#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
goto Three;
One:
cout<<"\n I am First ";
goto Two;
Two:
cout<<"\n I am Second ";
goto End;
Three:
cout<<"\n I am Third ";
goto One;
End:
getch();
}
#include<conio.h>
main()
{
clrscr();
goto Three;
One:
cout<<"\n I am First ";
goto Two;
Two:
cout<<"\n I am Second ";
goto End;
Three:
cout<<"\n I am Third ";
goto One;
End:
getch();
}
No comments:
Post a Comment