In C, an array name acts as a ________ pointing to the first element of the array.
- label
- pointer
- reference
- variable
In C, an array name is a constant pointer that points to the address of the first element in the array.
Loading...
Related Quiz
- How do you declare a pointer variable in C?
- To allocate memory dynamically and initialize it to a specific value, the ________ function can be used in C.
- The ________ keyword in C is used to give a reference to a variable that is already defined in some other scope.
- You're writing a C program that needs to read from a file and display the content on the screen. How would you handle the situation if the file does not exist?
- What is the main difference between function declaration and function definition in C?