Go_To

// Print ten times bvoc by decreament
#include<stdio.h>
#include<conio.h>
void main()
{
int cnt=9;
clrscr();
a:
printf("\n B.Voc.ACTech");
if(cnt>=1)
{
cnt--;
goto a;
}
getch();
}
---------------------------------
// Print five times your name
#include<stdio.h>
#include<conio.h>
void main()
{
int cnt=1;
clrscr();
a:
printf("\n ram");
if(cnt<=4)
{
cnt++;
goto a;
}
getch();
}

No comments:

Post a Comment