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
When should you use a type cast?
cavium networks written test pattern ..
What is this infamous null pointer, anyway?
What is getch?
Differentiate between null and void pointers.
Is it fine to write void main () or main () in c?
How do you override a defined macro?
What is huge pointer in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
write a program to find out prime number using sieve case?
What is void main ()?
Where local variables are stored in c?
What is 2c dna?
What are comments and how do you insert it in a C program?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.