This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/36818] New: unknow order to simple print
- From: "serroba at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 14 Jul 2008 04:17:24 -0000
- Subject: [Bug c/36818] New: unknow order to simple print
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
#include <stdio.h>
int main(){
int k = 0;
printf("%d %d %d %d %d\n\n",k++,k , ++k, k++,++k);
return 0;
}
why?
--
Summary: unknow order to simple print
Product: gcc
Version: 4.4.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: serroba at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36818