C Program using goto statement


In this program, You will learn how to implement a goto statement in c.


start:

goto start;

Example: How to implement a goto statement in c.

#include<stdio.h>

int main() {

   int i = 0;

   start:
   i++;

   if (i <= 5) {
       printf("%d\n", i);
       goto start;
   }
   printf("Exit From goto");

   return 0;
}

Output:

1
2
3
4
5
Exit From goto