Home »
Golang »
Golang Programs
Golang program to add two integer arrays
Here, we are going to learn how to add two integer arrays in Golang (Go Language)?
Submitted by Nidhi, on March 07, 2021 [Last updated : March 03, 2023]
Add the elements of two integer arrays in Golang
Problem Solution:
In this program, we will create and initialize two integer arrays then add both array elements and assign them to another array. After that, we will print elements of all arrays on the console screen.
Program/Source Code:
The source code to add two integer arrays is given below. The given program is compiled and executed successfully.
Golang code to add the elements of two integer arrays
// Golang program to add two integer arrays
package main
import "fmt"
func main() {
var arr3 [5]int
arr1 := [...]int{0, 1, 2, 3, 4}
arr2 := [...]int{5, 6, 7, 8, 9}
//Add two arrays
for i := 0; i <= 4; i++ {
arr3[i] = arr1[i] + arr2[i]
}
fmt.Printf("Array1: \n")
for i := 0; i <= 4; i++ {
fmt.Printf("%d ", arr1[i])
}
fmt.Printf("\nArray2: \n")
for i := 0; i <= 4; i++ {
fmt.Printf("%d ", arr2[i])
}
fmt.Printf("\nArray3: \n")
for i := 0; i <= 4; i++ {
fmt.Printf("%d ", arr3[i])
}
}
Output:
Array1:
0 1 2 3 4
Array2:
5 6 7 8 9
Array3:
5 7 9 11 13
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.
In the main() function, we created and initialized two arrays arr1, arr2 and also declared one another array arr3.
// Add two arrays
for i:=0;i<=4;i++{
arr3[i]=arr1[i] +arr2[i]
}
In the above code, we added the elements of arrays arr1 and arr2 and assigned them to the arr3. After that, we printed the elements of all arrays on the console screen.
Golang Array Programs »