#golang-developer
Read more stories on Hashnode
Articles with this tag
Introduction-Struct struct user-defined data type. a structure that groups together data elements. provide a way to reference a series of grouped...
Introduction A pointer is a variable that holds memory address of another variable. They point where the memory is allocated and provide ways to...
Introduction self contained units of code which carry out a certain job. help us divide a program into small manageable, repeatable and organizable...
Maps unordered collection of key/value pairs. implemented by hash tables. provide efficient add, get and delete operations. declaring and...
A slice is defined as a continuous segment of an underlying array and it provides access to a numbered sequence of elements from that array. Slices...
An array a collection of similar data elements that are stored at contiguous memory locations. For example - We can have a collection of integers...