int main()
{
int i=5;
if(i==5)
returen 0;
else
printf(“I is not five”);
printf(“over”);
}
Tutorial answer:
Execution termination without printing anything
Debugging solution:
In the first if condition is true so it will execute the return statement , complier does not go to next line,
0 Comments