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
What is a good data structure to use for storing lines of text?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the use of a conditional inclusion statement in C?
What is the use of pragma in embedded c?
What is page thrashing?
When can you use a pointer with a function?
What does sizeof return c?
Explain what is a pragma?
Ow can I insert or delete a line (or record) in the middle of a file?
number of times a digit is present in a number
How will you delete a node in DLL?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is character constants?
What is conio h in c?