Tutorials
Courses
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
19.9K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.1K+ articles
School Learning
11.2K+ articles
JavaScript
9.9K+ articles
Java
9.3K+ articles
Go Language
764+ articles
Golang
169+ articles
Go-Control-Flow
5 posts
Recent Articles
Popular Articles
Loops in Go Language
Last Updated: 19 November 2019
Go language contains only a single loop that is for-loop. A for loop is a repetition control structure that allows us to write a loop that is executed a specific number of...
read more
Go Language
Go-Control-Flow
Loop Control Statements in Go Language
Last Updated: 19 November 2019
Loop control statements in the Go language are used to change the execution of the program. When the execution of the given loop left its scope, then the objects that are ...
read more
Go Language
Go-Control-Flow
Golang
Switch Statement in Go
Last Updated: 06 November 2024
In Go, a switch statement is a multiway branch statement that efficiently directs execution based on the value (or type) of an expression. There are two main types of swit...
read more
Go Language
Go-Control-Flow
Golang
Select Statement in Go Language
Last Updated: 06 November 2024
In Go, the select statement allows you to wait on multiple channel operations, such as sending or receiving values. Similar to a switch statement, select enables you to pr...
read more
Go Language
Go-Control-Flow
Golang
Golang Program that Removes Duplicates Using Nested Loops
Last Updated: 17 May 2020
Given an array of size n. Your task is to remove the duplicates from the array. Examples:Input : array: 1 2 1 2 1 3 2 Output :1 2 3Input :array: 10 24 5 10 24Output :10 2...
read more
Picked
Go Language
Go-Control-Flow
Golang-Program
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 !