See the following code snippet:
{
int a=1;
printf("%d %d %d",a,++a,a++ );
}
Will the behavior be undefined/unspecifed or no such thing? Please
state reasons, along with your post(s).
{
int a=1;
printf("%d %d %d",a,++a,a++ );
}
Will the behavior be undefined/unspecifed or no such thing? Please
state reasons, along with your post(s).
Comment