Inside or Outside !

What is the output of the following C Program?

Program

main()
{
int a=1,b=0;
if(a+(b=-1))
printf(“Inside”);
else
printf(“Outside”);
getch();
}

Answer

Outside

Share/Save/Bookmark

About the Author