Golang program to read the name and print it 5 times using the goto statement

Here, we are going to learn how to read the name and print it 5 times using the goto statement in Golang (Go Language)?
Submitted by Nidhi, on February 21, 2021 [Last updated : March 03, 2023]

Golang goto Statement Example – Read the name and print it 5 times

Problem Solution:

In this program, we will read the name of the user and then print the name 5 times on the console screen.

Golang code to read the name and print it 5 times using the goto statement

Program/Source Code:

The source code to read the name and print it 5 times using the goto statement is given below. The given program is compiled and executed successfully.

// Golang program to read the name and print it 5 times

package main

import "fmt"

func main() {

	var val int = 0
	var name string

	fmt.Print("Enter Name: ")
	fmt.Scanf("%s", &name)

XYZ:
	val = val + 1

	fmt.Printf("%s\n", name)
	if val < 5 {
		goto XYZ
	}
}

Output:

Enter Name: Radib
Radib
Radib
Radib
Radib
Radib

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the main() function, we created two variables val, name, and created a label XYZ.

After that increase the value of variable val by 1 till it becomes 5 and print name on the console screen.

if (val<5){
    goto XYZ
}

The above code will transfer program control to the XYZ label if the value of variable val is less than 5.

Golang goto Statement Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.