×
×
Correct!
Print the value of the second element in the cars array.
package main
import ("fmt")
func main() {
var cars = [4]@(6){"Volvo", "BMW", "Ford", "Mazda"}
fmt.Print(@(7))
}
package main
import ("fmt")
func main() {
var cars = [4]string{"Volvo", "BMW", "Ford", "Mazda"}
fmt.Print(cars[1])
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?