goto statement C Programming /*The following program using goto statement*/ #include< stdio.h > #include< conio.h > void main() { int l; clrscr(); Laura: //here Laura is the name of goto Label printf("Enter any No."); scanf("%d",&l); if(l==5) { goto Laura; } printf("\n%d",l); getch(); } Read more » Tweet Share Share Share Share Related Post
ConversionConversion EmoticonEmoticon