Go Interview Questions and Answers For Freshers Part-5
41.How to define a slice in Go? To define a slice, you can declare it as an array without specifying size or use make function to create the one. var numbers []int /* a slice of unspecified size */ /*…
Read More