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 #define?
Explain the binary height balanced tree?
What is the size of enum in bytes?
What is a buffer in c?
What is array in C
Differentiate abs() function from fabs() function.
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is the difference between struct and typedef struct in c?
What are the valid places to have keyword “break”?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What are different types of variables in c?
Explain what is #line used for?
What is || operator and how does it function in a program?
Is file a keyword in c?
What is the return type of sizeof?