Friday 4 September 2015

eg for goto

#include<stdio.h>
#include<conio.h>
void main()
{int x   ;
clrscr();
xyz:
printf("raj");
printf("enter number");
scanf("%d",&x);
if(x>=10)
goto xyz;
printf("adi");
getch();











}

No comments:

Post a Comment