Education for ALL
Pages
C
C++
MP
NM
CG
COA
CN
DBMS
Crypto
IP
SE
SPM
DSA
OS
MC
C Program to display Floyd's Triangle
#include <stdio.h>
#include<conio.h>
void main()
{
int rows,i,j,k=0;
printf("Enter number of rows: ");
scanf("%d",&rows);
for(i=1;i<=rows;i++)
{
for(j=1;j<=i;j++)
printf("%d ",k+j);
k=k+i;
printf("\n");
}
getch();
}
OUTPUT:
No comments:
Post a Comment
Newer Post
Older Post
Home
No comments:
Post a Comment