Golang program to print the ASCII value of specified string using the goto statement

Here, we are going to learn how to print the ASCII value of specified string using the goto statement in Golang (Go Language)?
Submitted by Nidhi, on February 21, 2021 [Last updated : March 03, 2023]

Golang goto Statement Example – Print the ASCII value of specified string

Problem Solution:

In this program, we will print the ASCII value of each character of a given string, here we will access characters from the string one by one and print the result on the console screen.

Program/Source Code:

The source code to print the ASCII value of a specified string using the goto statement is given below. The given program is compiled and executed successfully.

Golang code to print the ASCII value of specified string using the goto statement

// Golang program to print the ASCII value of the
// specified string

package main

import "fmt"

func main() {

	var val int = 0
	var str string = "ABCD"

XYZ:
	fmt.Printf("%d ", str[val])
	val = val + 1

	if val < 4 {
		goto XYZ
	}
}

Output:

65 66 67 68

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 a variable val with initial value 0 and string str is initialized with "ABCD" and also created a label XYZ.

After that increase the value of variable val by 1 till it becomes 4 and prints corresponding ASCII values using the "%d" format specifier on the console screen,

if (val<4){
    goto XYZ
}

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

Golang goto Statement Programs »





Comments and Discussions!

Load comments ↻





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