#include <stdio.h>
int main()
{
int i;
for(i = 0; i < 3; printf("%d ", ++i));
/* Empty block of statements. */
return 0;
}
References: C From Theory