what is the difference between normal variables and pointer
variables..............
Answer Posted / nibedita
Pointers will store the variable address and normal variable
will store the variable value. But if you will declare int *p;
int i=10; and you want to accsess the memory of i you have
to write p=&i; But i can access directly the memory adress
of variable through printf("%d",&i); Then wht is the
difference between pointer and normal variable?
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What’s a signal? Explain what do I use signals for?
What is the use of c language in real life?
Is that possible to add pointers to each other?
Are the expressions * ptr ++ and ++ * ptr same?
Why pointers are used?
What is dynamic dispatch in c++?
in iso what are the common technological language?
What is a pragma?
What is c programing language?
What is the difference between union and structure in c?
write a program to print largest number of each row of a 2D array
What is the difference between the = symbol and == symbol?
What is array of pointers to string?
Why are algorithms important in c program?
In a byte, what is the maximum decimal number that you can accommodate?