0
Why is the output as "no output " ??
2 Answers
+ 2
Always do dry run before compiling on editor whatever you have written here your loop condition is invalid that's why it shows no output
#include <stdio.h>
int main()
{
for(unsigned int i =0 ; i <2 ;i++)
{
puts("text");
}
return 0;
}
+ 1
Condition - I < 2;