adplus-dvertising
frame-decoration

Question

A pointer is

a.

A variable that stores address of an instruction

b.

A variable that stores address of other variable

c.

A keyword used to create variables

d.

None of these

Answer: (b).A variable that stores address of other variable

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. A pointer is

Similar Questions

Discover Related MCQs

Q. "&" is called as ___________ in pointer concept.

Q. "*" is called as ___________.

Q. What is (void*)0?

Q. In which header file is the NULL macro defined?

Q. How many bytes are occupied by near, far and huge pointers (DOS)?

Q. 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?

Q. What would be the equivalent pointer expression for referring the array element a[i][j][k][l]

Q. A pointer is

Q. The operator used to get value at address stored in a pointer variable is

Q. Which of the following statements correctly declare a function that receives a pointer to pointer to a pointer to a float and returns a pointer to a pointer to a pointer to a pointer to a float?

Q. Can you combine the following two statements into one?
char *p;
p = (char*) malloc(100);

Q. Which of the following statements correct about k used in the below statement?char ****k;

Q. In C, if you pass an array as an argument to a function, what actually gets passed?

Q. Which of the following statements mentioning the name of the array begins DOES NOT yield the base address?

1: When array name is used with the sizeof operator.
2: When array name is operand of the & operator.
3: When array name is passed to scanf() function.
4: When array name is passed to printf() function.

Q. Which of the following statements are correct about 6 used in the program?
int num[6];num[6]=21;

Q. Which of the following statements are correct about an array?

1:The array int num[26]; can store 26 elements.
2:The expression num[1] designates the very first element in the array.
3:It is necessary to initialize the array at the time of declaration.
4:The declaration num[SIZE] is allowed if SIZE is a macro.

Q. O(N)(linear time) is better than O(1) constant time.

Q. For 'C' programming language

Q. What is the maximun number of dimensions an array in C may have?

Q. If x is an array of interger, then the value of &x[i] is same as