Google News
logo
Golang - Quiz(MCQ)
How arrays in GO works differently than C?
A)
The size of an array is part of its type. The types [10] int and [20] int are distinct
B)
If you pass an array to a function, it will receive a copy of the array, not a pointer to it
C)
Both (A) and (B)
D)
All of the Above

Correct Answer :   All of the Above

Advertisement