what is pointer ? what is the use of pointer?
Answer Posted / rama krishna sidhartha
Pointer is the address of the another variable.
It saves the memory space of another variables.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain what is the benefit of using #define to declare a constant?
What is hungarian notation? Is it worthwhile?
What is dynamic memory allocation?
What is the difference between exit() and _exit() function?
What is the explanation for cyclic nature of data types in c?
Explain about the functions strcat() and strcmp()?
Process by which one bit pattern in to another by bit wise operation is?
What is the use of static variable in c?
what is the structure pointer?
How can you determine the maximum value that a numeric variable can hold?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Is there sort function in c?
How can I call fortran?
Explain what are compound statements?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??