a way in which a pointer stores the address of a pointer which stores the value of the target value
a) reference
b) allocation
c) multiple indirection
d) none
No Answer is Posted For this Question
Be the First to Post Answer
What is echo in c programming?
why we wont use '&' sing in aceesing the string using scanf
write a c program to add two integer numbers without using arithmetic operator +
What is the difference between near, far and huge pointers?
what's the return value of malloc()
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Who invented bcpl language?
For what purpose null pointer used?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
In c programming language, how many parameters can be passed to a function ?
how to write a data 10 in address location 0x2000