Floyd’s Triangle in C
A simple C program to print floyd's triangle. A user enters the number of rows as seen in the output. #include<stdio.h> #include<conio.h> void main() { int i,j,num=1,n; clrscr(); printf("enter the…
A simple C program to print floyd's triangle. A user enters the number of rows as seen in the output. #include<stdio.h> #include<conio.h> void main() { int i,j,num=1,n; clrscr(); printf("enter the…