If condition and return statement

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,

Post a Comment

0 Comments