Q:

pattern program 8 (C language)

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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now