In C, a double pointer is a pointer that points to another ________.
- double
- int
- pointer
- variable
In C, a double pointer is a pointer that points to another pointer. It is used to store the address of a pointer variable.
Loading...
Related Quiz
- When a string is declared as a character array, the string must be terminated with a ________.
- What is the primary cause of memory leaks in a C program?
- To resize a previously allocated memory block, the function ________ is used in C.
- What is the significance of using pointers to functions in C?
- The ________ keyword in C is used to give a reference to a variable that is already defined in some other scope.