Answers for "golang interger to string"

Go
13

golang convert int to string

str := strconv.Itoa(12)
Posted by: Guest on June-12-2020
0

Golang strconv, Convert Int to String

Golang program that casts float to int

package main

import "fmt"

func main() {
    size := 1.2
    fmt.Println(size)

    // Convert to an int with a cast.
    i := int(size)
    fmt.Println(i)
}

Output

1.2
1
Posted by: Guest on February-21-2022

Browse Popular Code Answers by Language