#include #include // exit() function //test.c int main() { int n1; int n2; n1 =5; //jump: printf("\n Restricted Numbers 10,12,14 : "); again: printf("\n Enter two numbers with space : "); scanf("%i%i",&n1, &n2); if(n1==10){ printf("%s ", "oops exit(1) ");exit(1); } if(n1==12){ printf("%s ", "oops retrun(1)");return(1); } if(n1==14){ printf("%s ","normal completion return(0)");return(0); } if(n1==22){ goto jump;} printf("\t %s, %i%i", "U entered ", n1,n2); printf("\n %s ","want some more"); goto again; printf("\n %s ", "end of the function !Bye"); jump: return 0; }