[algogeeks] Re: c output doubt

2011-08-14 Thread roopesh bajaj
what is the logic of your concept On Aug 13, 5:01 pm, Kunal Patil kp101...@gmail.com wrote: @rohit: Cast pointer to an integer into an int to get what you are expecting. for e.g. printf(%d,(int)a[4]-(int)a[0]); This will give 16. -- You received this message because you are subscribed

Re: [algogeeks] Re: c output doubt

2011-08-13 Thread Kunal Patil
@rohit: Cast pointer to an integer into an int to get what you are expecting. for e.g. printf(%d,(int)a[4]-(int)a[0]); This will give 16. -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to

[algogeeks] Re: c output doubt

2011-08-12 Thread rohit
Thanks a lot On Aug 12, 11:25 am, Avinash Dharan avinashdha...@gmail.com wrote: Pointer incrementation and subtraction are done in terms of memory blocks and not addresses of memory. For example, int *p; p++; The pointer here jumps to the next integer location and not the next address in