Predict the output of this simple C program!
#include<stdio.h>
main()
{
int j = 1;
while( j++<=8 )
printf("%d ",j++);
}

Posted on by