Sunday, July 28, 2019

Numeric Pattern2

Numeric Pattern2:


11111
22222
33333
44444
55555


#include<stdio.h>
#include<conio.h>

void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=5;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}


EmoticonEmoticon