Tagged: floyds triangle c program

0

C Program to Implement Floyds Triangle

This is the Implementation of Floyd’s triangle in C,Enter the Number of Lines it will print the Triangle with Number #include main() { int num=1; int i,j,n; printf(“Enter the Number of Rowsn”); scanf(“%d”,&n); for...