C Language
Pages
(Move to ...)
Main
C Concepts
C Questions
▼
Friday, 11 January 2013
Structure2 (using for loop)
Program to display the following structure:
1
1 2
1 2 3
1 2 3 4
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
for(i=1;i<5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment