Coding a 3D array

Report a typo

Declare a three-dimensional array of the float32 type with the size of 4 by 4 by 4 elements, assign 88.6 to its [1][0][2] element, and finally print the array to the console.

Write a program in Go
package main

import "fmt"

func main() {
// Create the array and assign 88.6 to its [1][0][2] element below:
array := ?

// DO NOT delete, this line prints the array!
fmt.Println(array)
}
___

Create a free account to access the full topic