Pointers
1. Pointer is a :
2. If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
3. The name of the array is a pointer to the _________ element of the array.
4. Which operator is used to get the address of a variable in C?
5. What is the output of the following code?
int x = 10;
int *p = &x;
printf("%d", *p);
6. Which of the following is NOT a valid use of pointers?