โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main() {
int i;
for(i=-1;i<=10;i++) {
if(i<5)
continue;
else
break;
ptintf("Once");
}
return 0;
}