How many times will the print statement be executed?
#include iostream

using namespace std;

main(){
int i = 0;
label:
cout"Interviewbit ";
i++;
if(i 3){
goto label;
}
}

Posted on by