Answer Posted / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Difference between constant pointer and pointer to a constant.
State two uses of pointers in C?
Why do we write return 0 in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the use of header?
When should the register modifier be used? Does it really help?
What is difference between union All statement and Union?
find the sum of two matrices and WAP for it.
Compare and contrast compilers from interpreters.
Is c programming hard?
How variables are declared in c?
Can the size of an array be declared at runtime?
Give differences between - new and malloc() , delete and free() ?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is %g in c?