A Slice is a variable-length sequence that stores elements of a similar type, you are not allowed to store different type of elements in the… Read More
Tag Archives: Golang
Slice is a variable-length sequence which stores elements of a similar type, you are not allowed to store different type of elements in the same… Read More
Prerequisite: Multiple Goroutines A Goroutine is a function or method which executes independently and simultaneously in connection with any other Goroutines present in your program.… Read More
Prerequisite: Pointers in Golang Pointers in Go programming language or Golang is a variable which is used to store the memory address of another variable.… Read More
A structure or struct in Golang is a user-defined type that allows to group/combine items of possibly different types into a single type. Any real-world… Read More
Slices in Go are a flexible and efficient way to represent arrays, and they are often used in place of arrays because of their dynamic… Read More
Go language provides a special feature known as a Goroutines. A Goroutine is a function or method which executes independently and simultaneously in connection with… Read More
Prerequisite: Golang Data Types Type conversion happens when we assign the value of one data type to another. Statically typed languages like C/C++, Java, provide… Read More
Prerequisite: Pointers in Go Pointers in Go programming language or Golang is a variable which is used to store the memory address of another variable.… Read More
Prerequisite: Pointers in Go and Passing Pointers to Function Pointers in Go programming language or Golang is a variable which is used to store the… Read More
Prerequisite: Pointers in Go Pointers in Go programming language or Golang is a variable which is used to store the memory address of another variable.… Read More
Short Variable Declaration Operator(:=) in Golang is used to create the variables having a proper name and initial value. The main purpose of using this… Read More
Pointers in Go programming language or Golang is a variable that is used to store the memory address of another variable. Pointers in Golang is… Read More
Arrays in Golang or Go programming language is much similar to other programming languages. In the program, sometimes we need to store a collection of… Read More
var keyword in Golang is used to create the variables of a particular type having a proper name and initial value. Initialization is optional at… Read More