Predict the output of the following code
#includestdio.h
void main ( )
{
int b=3 , a=6;
b=a++;
printf("%d\n",b);
printf ("%d",a);
}

Posted on by