/*
1
10
101
1010
10101
*/
#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(“\n”);
}
getch();
}
OUTPUT:
1
10
101
1010
No comments:
Post a Comment