#include<stdio.h>
Void main()
{
    int i;
    printf("Start\n");
    i=0;
    first : if(i==0);
               goto last;
    printf("%d\n,i);
    i++;
    goto first;
    last : printf("End");
}
  What would be the output of the above  code?

Posted on by