[Solved] what is the output? Please explain, considering i am a novice in c [closed]
[ad_1] Time for a crash course on arrays in C. First of all, let’s fix the initializer for the array: int a[3][4] = { { 1, 2, 3, 4}, { 5, 6, 7, 8}, { 9, 10, 11, 12} }; This defines a 3-element array of 4-element arrays of int. The type of the expression … Read more