Q:

Golang program to convert a Boolean value to string

belongs to collection: Golang strconv Package Programs

0

Here, we will convert the value of the Boolean variable into the string and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to convert a Boolean value to a string is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to convert a Boolean value
// to string

package main

import "fmt"
import "strconv"

func main() {
	var val1 bool = true
	var val2 bool = false
	var str string

	//Convert a boolean values into string.
	str = strconv.FormatBool(val1)
	fmt.Println(str)

	str = strconv.FormatBool(val2)
	fmt.Println(str)
}

Output:

true
false

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", "strconv" packages then we can use a function related to imported packages.

In the main() function, we created two Boolean variables and one string variable. Then we converted the value of Boolean variables into the string using strconv.FormatBool() and assigned to str variable and print result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang program to convert a signed integer value t... >>
<< Golang program to convert a specified string into ...