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
#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??
How are portions of a program disabled in demo versions?
Describe dynamic data structure in c programming language?
What are the scope of static variables?
Where in memory are my variables stored?
Explain how can you tell whether two strings are the same?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What library is sizeof in c?
What does sizeof int return?
What is bubble sort in c?
Can you subtract pointers from each other? Why would you?
Write program to remove duplicate in an array?
What is the stack in c?
Why is it that not all header files are declared in every C program?
How to draw the flowchart for structure programs?