Q:

Golang program to create and modify created slice

belongs to collection: Golang Slices Programs

0

In this program, we will create a slice from an array of integers and then modify the value in created slice and print the slice 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 create and modify created slice is given below. The given program is compiled and executed successfully.

// Golang program to create and modify created slice

package main

import "fmt"

func main() {
	//Create an integer array
	arr := [10]int{10, 20, 30, 40, 50, 60, 70, 80, 90, 100}

	//create slice of from index 2 till index 4(5-1).
	intSlice := arr[2:5]

	intSlice[1] = 500
	fmt.Println("Slice elements: ")
	for _, ele := range intSlice {
		fmt.Printf("%d ", ele)
	}
}

Output:

Slice elements:
30 500 50

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 an array of integers with 10 elements and then create the slice from the array. After that, we assigned the value 500 at index 1 in slice and printed the slice elements using a range in the "for" loop without index using "_" 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
Golang program to sort a slice of integer in ascen... >>
<< Golang program to iterate a slice using a range in...