What will be the utputof the following code?
#include<stdio.h> 
int main()
{
int value=1;
for(;value++;printf("\n%d",value)) ;
printf("\n%d",value);
return 0;
}

Posted on by