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

Why header file is used in c?

0 Answers  


why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


What is the use of typedef in structure in c?

0 Answers  


What is the meaning of && in c?

0 Answers  






What is meant by realloc()?

0 Answers  


What are pointers in C?

5 Answers   KPIT,


What is meaning of "Void main" in C Language.

24 Answers   Ford, GU, HCL, IBIBS, JUW, TCS,


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

0 Answers  


What is external and internal variables What is dynamic memory allocation what is storage classes in C

3 Answers  


what is the similarities between. system call and library function?

1 Answers   Wipro,


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


Categories