“GO TYPE CASTING” Réponses codées

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

Réponses similaires à “GO TYPE CASTING”

Questions similaires à “GO TYPE CASTING”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code