C Programming :: Arrays
-
What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?
-
What does the following declaration mean?
int (*ptr)[10]; -
In C, if you pass an array as an argument to a function, what actually gets passed?