belongs to collection: Pattern Programs in C
pattern program 8
Program - 8
/*C program to print following Pyramid: 12345 1234 123 12 1 */ #include<stdio.h> int main() { int i,j; for(i=5; i>=1; i--) { for(j=1; j<=i; j++) { printf("%d", j); } printf("\n"); } return 0; }
Output
12345 1234 123 12 1
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program - 8
Output
need an explanation for this answer? contact us directly to get an explanation for this answer