array of string golang
var x [2]string // An array of 2 strings
x[1] = "German"
var y [2]string{"English", "Japanese"}
import "fmt"
for i := 0; i < len(y); i++ {
fmt.Println(y[i])
}
array of string golang
var x [2]string // An array of 2 strings
x[1] = "German"
var y [2]string{"English", "Japanese"}
import "fmt"
for i := 0; i < len(y); i++ {
fmt.Println(y[i])
}
go arrays
var a [10]int // declare an int array with length 10. Array length is part of the type!
a[3] = 42 // set elements
i := a[3] // read elements
// declare and initialize
var a = [2]int{1, 2}
a := [2]int{1, 2} //shorthand
a := [...]int{1, 2} // elipsis -> Compiler figures out array length
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us