72

Predict the output:
int main()
{
if(-1)
printf("hi");
if(1)
printf("Bye");
return 0;
}

Output:
hiBye

Related Posts