Tutorials
Courses
Go Premium
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.1K+ articles
School Learning
11.1K+ articles
Go Language
764+ articles
Golang
169+ articles
Go-Basics
8+ articles
Go-Operators
3+ articles
Go-Keywords
7 posts
Recent Articles
Popular Articles
Golang program that uses defer keyword
Last Updated: 12 July 2025
The main use of the defer keyword in go is that it is used to clean up the resources used by opened files, network connections, database handles, etc. This helps to reduce...
read more
Picked
Go Language
Go-Keywords
Golang-Program
Golang program that uses fallthrough keyword
Last Updated: 04 May 2020
With the help of fallthrough statement, we can use to transfer the program control just after the statement is executed in the switch cases even if the expression does not...
read more
Picked
Go Language
Go-Keywords
Golang-Program
Range Keyword in Golang
Last Updated: 12 July 2025
In Golang Range keyword is used in different kinds of data structures in order to iterates over elements. The range keyword is mainly used in for loops in order to iterate...
read more
Picked
Go Language
Go-Keywords
Defer Keyword in Golang
Last Updated: 12 July 2025
In Go language, defer statements delay the execution of the function or method or an anonymous method until the nearby functions returns. In other words, defer function or...
read more
Go Language
Go-Keywords
Golang
var keyword in Go
Last Updated: 12 July 2025
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 the time of declaration of...
read more
Go Language
Go-Keywords
Golang
Difference between var keyword and short declaration operator in Golang
Last Updated: 12 July 2025
A variable is a storage location or place holder used for holding the value. It allows us to manipulate and retrieve the stored information. There are two ways to declare ...
read more
Go Language
Go-Keywords
Go-Operators
Golang
Go Keywords
Last Updated: 03 February 2020
Keywords or Reserved words are the words in a language that are used for some internal process or represent some predefined actions. These words are therefore not allowed ...
read more
Go Language
Go-Basics
Go-Keywords
Golang
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !