Q:

Golang program to add two integer arrays

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to add two integer arrays is given below. The given program is compiled and executed successfully.

// 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 arr1arr2 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.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now