C program to demonstrate the use of goto statement
gd.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
godarda@gd:~$ gcc gd.c godarda@gd:~$ ./a.out
Enter a number 6
6 is an EVEN number
godarda@gd:~$
Dear User, Thank you for visitng GoDarda. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.