Converting Int data type to Float in Go
Example
package main
import (
"fmt"
"reflect"
)
func main() {
var f32 float32 = 10.6556
fmt.Println(reflect.TypeOf(f32))
i32 := int32(f32)
fmt.Println(reflect.TypeOf(i32))
fmt.Println(i32)
f64 := float64(i32)
fmt.Println(reflect.TypeOf(f64))
}
Output
float32
int32
10
float64
Most Helpful This Week
How to convert Boolean Type to String in Go?
Concurrently printing array elements using goroutines and channels
Go program to find PTR pointer record of a domain
How do you create an HTTP server in Go?
Golang program for implementation of Insertion Sort
How to remove multiple spaces in a string in GoLang?