How many times "Sookshmas" will be executed.
main(){
  int i = 0;
  label:
  cout << "Sookshmas";
  i++;
  if(i < 3){
    goto label;
  }
}

Posted on by