--- Sunil Nair <[EMAIL PROTECTED]> wrote:

>   s.......provided might be compiler dependent......

#include <stdio.h>

int main (int argc, char ** argv) {

int i=12345, *ip=&i;

printf ("%d\n",*ip++);
printf ("%d\n",*ip);

return 0;
}

  Which compiler are you using?

> Unary operators ... associate from right to left.
> so *b++ is token(ed) as  *(b++)

  Could you point it inside ISO/IEC 9899:1999 (E) ?

  C++ by Mauro Rezende writes that "Unary operators ... associate from right
to left", but gcc doesn't.



 
____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com

Reply via email to