*ptr pointer to the address. when the pointer is increased the next address 
will be
accessed. suppose a[10] is an array having values {10,20,30,40}.if *ptr is 
assign to a (
*ptr=a), then *ptr will point to 10, *ptr++ will point to next integer address 
ie *ptr++
value is 20. But when come to (*ptr)++, *ptr value is 10 it will increment by 
one and 11
is printed.  


                
__________________________________________________________
Yahoo! India Answers: Share what you know. Learn something new
http://in.answers.yahoo.com/

Reply via email to