what is the difference between normal variables and pointer
variables..............
Answer Posted / guest
normal variables carry the specified data where as the
pointer variable carried the address of the specified data,,,,,
eg: if we give int x =10; ptr p=*x;here x is the normal
variable carries 10 and pointer variable is p which carried
address of the integer variable x.
| Is This Answer Correct ? | 215 Yes | 31 No |
Post New Answer View All Answers
What is this infamous null pointer, anyway?
Explain the use of 'auto' keyword in c programming?
c program for searching a student details among 10 student details
How many types of functions are there in c?
What does sizeof int return?
What is the use of getch ()?
Is null always equal to 0(zero)?
What are the types of bitwise operator?
What are the different types of pointers used in c language?
Write a program to print numbers from 1 to 100 without using loop in c?
Why can’t we compare structures?
how to create duplicate link list using C???
Is there any demerits of using pointer?
what is the diffrenet bettwen HTTP and internet protocol
Explain do array subscripts always start with zero?