Anonymous

What Is The Difference Between Pointer Variable And Simple Variable? What Are The Advantages Of Pointer Variable

1

1 Answers

mayank  agarwal Profile
mayank agarwal answered
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.

Answer Question

Anonymous