C - Loop Control Statements
What will be the output of this C code?
int main() {
int x = 0;
start:
x++;
if (x < 3) goto start;
printf("%d", x);
return 0;
}