A function in Golang is a collection of statements which is used to perform specific task and return the result to the caller. A function… Read More
Tag Archives: Golang
A structure or struct in Golang is a user-defined type, which allows us to create a group of elements of different types into a single… Read More
A structure or struct in Golang is a user-defined type, which allows us to create a group of elements of different types into a single… Read More
Pointers in Golang is a variable which is used to store the memory address of another variable. Pointers in Golang is also termed as the… Read More
In Go language, the interface is a collection of method signatures and it is also a type means you can create a variable of an… Read More
In Go language, the interface is a collection of method signatures and it is also a type means you can create a variable of an… Read More
Go is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google, but launched in 2009… Read More
Prerequisite: Functions in GolangIn Golang, Named Return Parameters are generally termed as the named parameters. Golang allows giving the names to the return or result… Read More
_(underscore) in Golang is known as the Blank Identifier. Identifiers are the user-defined name of the program components used for the identification purpose. Golang has… Read More
In Go language, the string is an immutable chain of arbitrary bytes encoded with UTF-8 encoding. In Go strings, the process of adding two or… Read More
In Go language, the string is an immutable chain of arbitrary bytes encoded with UTF-8 encoding. You are allowed to compare strings with each other… Read More
In Go language, strings are different from other languages like Java, C++, Python, etc. it is a sequence of variable-width characters where each and every… Read More
In Go language, whenever we allocate memory for a variable with the help of declaration or by using new and if the variable is not… Read More
In Go language, a map is a powerful, ingenious, and versatile data structure. Golang Maps is a collection of unordered pairs of key-value. It is… Read More