Program for print patter for name in c language
Program for print patter for name
#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
for(a=1;a<=5;a++)
{
printf("my name is sonu kumar\n");
}
getch();
}
Output:-
#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
for(a=1;a<=5;a++)
{
printf("my name is sonu kumar\n");
}
getch();
}
Output:-
No comments
Post a Comment