C program to demonstrate the use of goto statement
codeaft.c
#include<stdio.h>intmain(){intn,a;printf("Enter a number ");scanf("%d",&n);if(n%2==0){gotoEVEN;}else{gotoODD;}EVEN:printf("%d is an EVEN number\n",n);return(0);ODD:printf("%d is an ODD number\n",n);return0;}
Output
codeaft@codeaft:~$ gcc codeaft.c codeaft@codeaft:~$ ./a.out
Enter a number 6
6 is an EVEN number
codeaft@codeaft:~$
Dear User, Thank you for visitng Codeaft. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.