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 the acronym for ansi?
What are the 5 elements of structure?
How would you obtain the current time and difference between two times?
What is structure padding in c?
What is the c language function prototype?
What does *p++ do? What does it point to?
Is r written in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Place the #include statement must be written in the program?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Write a program to generate the Fibinocci Series
With the help of using classes, write a program to add two numbers.
Compare array data type to pointer data type
What is the difference between printf and scanf )?