What is the output of the code?
#includestdio.h
int main()
{
int i;
for(i=0;i10;i++)
{
printf ("%d\n",i++);
i=++i;
}
return 0;
}



Posted on by