Q:

Golang program to iterate different types of data structures using the range

belongs to collection: Golang Range Programs

0

In this program, we will create an integer array and a map. Then we will iterate elements of the array and map using the range.

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 iterate different types of data structures using range is given below. The given program is compiled and executed successfully.

// Golang program to iterate different types of
// data structures using the range

package main

import "fmt"

func main() {
	intArr := []int{10, 20, 30, 40, 50}
	var CountryCode = make(map[string]int)

	CountryCode["ind"] = 101
	CountryCode["aus"] = 102
	CountryCode["eng"] = 103
	CountryCode["pak"] = 104
	CountryCode["usa"] = 105

	fmt.Printf("\nArray elements: ")
	for index, val := range intArr {
		fmt.Printf("\nIntArr[%d] : %d", index, val)
	}

	fmt.Printf("\nMap elements: ")
	for Key, Value := range CountryCode {
		fmt.Printf("\n%s : %d", Key, Value)
	}
}

Output:

Array elements:
IntArr[0] : 10
IntArr[1] : 20
IntArr[2] : 30
IntArr[3] : 40
IntArr[4] : 50
Map elements:
pak : 104
usa : 105
ind : 101
aus : 102
eng : 103

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 to formatting related functions.

In the main() function, we created an integer array and a map. Here, we accessed elements of the array and CountryCode map to print 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