/*
1
22
333
4444
55555
*/
#include<conio.h>
#include<stdio.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();
}
OUTPUT:
1
22
333
4444
55555
Download
No comments:
Post a Comment