#include <stdio.h>
int main()
{
label:
printf("We are inside label\n");
goto end;
printf("Hello World\n"); // This never prints because the program straight went to the end
goto label;
end:
printf("We are at end");
return 0;
}
#include <stdio.h>
int main()
{
int num;
for (int i = 0; i < 8; i++)
{
printf("%d", i);
for (int j = 0; j < 8; j++)
{
printf("Enter the number. enter 0 to exit\n");
scanf("%d", &num);
if (num == 0)
{
goto end;
}
}
}
end:
return 0;
}