What is the usage of continue statement in go programming language?
Answer / Rahul Chakraborty
The `continue` statement in Go causes the current iteration of a loop to end and immediately start the next iteration. It can be used with for, for-range, or switch loops.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are methods in go?
What is function closures in go pragramming?
Why does my go process use a lot of virtual memory?
How would you print type of variable in go?
What are goroutines?
How will you access command line arguments in a go program?
How many ways we can pass parameters to a function in go programming?
What is cgo golang?
What is the default value of type bool in go programming?
What is go routine in go? How you can stop go routine?
Does golang support operator overloading?
How can an entry be deleted from a map?