0
Why output is not showing?
2 ответов
+ 1
Viru Maurya for what value of ``i`` do you expect the condition of the if-statement to be true? Try running this program locally on your PC too (after compiling it) and see if you get an output.
Adding an else-statement after the if might help with debugging.
+ 1
In your else-block just write something like:
else printf("condition not true\n");
Hope that helps.