what is the difference between normal variables and pointer
variables..............

Answers were Sorted based on User's Feedback



what is the difference between normal variables and pointer variables................

Answer / naga raju

a pointer is nothing more than an address, and a pointer variable is just a variable that can store an address.

Is This Answer Correct ?    2 Yes 0 No

what is the difference between normal variables and pointer variables................

Answer / vrushali

Hi Vighnesh,

Please explain the term data security.....


Thanks

Is This Answer Correct ?    13 Yes 13 No

what is the difference between normal variables and pointer variables................

Answer / priyanka

It gives the value stored at a particular address

Is This Answer Correct ?    0 Yes 1 No

what is the difference between normal variables and pointer variables................

Answer / rafiya

Variable is a name given to the memory location of the specified data type.
Pointers are the variables which are capable of storing another variable's address.

Is This Answer Correct ?    0 Yes 1 No

what is the difference between normal variables and pointer variables................

Answer / 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

More C Interview Questions

What is a volatile keyword in c?

0 Answers  


What is an lvalue in c?

0 Answers  


we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????

4 Answers   Google,


Explain modulus operator. What are the restrictions of a modulus operator?

0 Answers  


Explain how does free() know explain how much memory to release?

0 Answers  


Which is better pointer or array?

0 Answers  


What is console in c language?

0 Answers  


write a c program to find the sum of five entered numbers using an array named number

0 Answers   TATA,


Why do we use c for the speed of light?

0 Answers  


What is null pointer in c?

0 Answers  


What are the uses of pre-processor directives?

2 Answers  


What is formal argument?

0 Answers  


Categories