“Go Type Casting” Kode Jawaban

Go Type Casting

package main

import (
	"fmt"
)

func main() {
	Name := []byte("John Doe")
	fmt.Println("My name is", string(Name))
}
Restu Wahyu Saputra

Go Type Casting

// variable of float type
var floatValue float = 9.8

// convert float to int
var intValue int = int(floatValue)
SAMER SAEID

Jawaban yang mirip dengan “Go Type Casting”

Pertanyaan yang mirip dengan “Go Type Casting”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya