Q:

Golang program to create a slice using the make() function

belongs to collection: Golang Slices Programs

0

In this program, we will use the make() function to create an array a slice the array. After that, we will print the result 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 a slice using the make() function is given below. The given program is compiled and executed successfully.

// Golang program to create a slice using
// the make() function

package main

import "fmt"

func main() {

	// Creating an array of size 8 and slice this array
	// till 5 and return the reference of the slice
	var slice = make([]int, 5, 8)

	fmt.Println("Slice: ", slice)
	fmt.Println("Length of Slice: ", len(slice))
	fmt.Println("Capacity of Slice: ", cap(slice))
}

Output:

Orginal slice:  [2 3 4 5 6 7]
New slice:  [3 4 5]

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 8 elements and slice the array for 5 elements using the make() function, and then printed the slice, length, capacity 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 iterate a slice using \'ran... >>
<< Golang program to create a new slice from the exis...