0
In c++
Explain this code main() { for(;0;) { printf("hello"); } } Output in TC++ ??
2 Antworten
+ 1
Hey abhishek bairwa
0 means false condition for "for" loop , so loop terminates "hello" cannot be printed !
Explain this code main() { for(;0;) { printf("hello"); } } Output in TC++ ??