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 is bubble sort in c?
Is that possible to add pointers to each other?
What are the 4 data types?
What is difference between union and structure in c?
What are c identifiers?
Explain is it better to bitshift a value than to multiply by 2?
Explain what happens if you free a pointer twice?
What is pointer and structure in c?
Explain the difference between call by value and call by reference in c language?
Explain the use of 'auto' keyword in c programming?
how to find binary of number?
What is the difference between single charater constant and string constant?
How does #define work?
Why is a semicolon (;) put at the end of every program statement?
What is structure pointer in c?