Q:

pattern program 8 (C language)

belongs to collection: Pattern Programs in C

0

pattern program 8

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

pattern program 9 (C language)... >>
<< pattern program 7 (C language)...