Blog For C Programming
Start From the Beginning and Go to the End
Pages
Home
Java Programming
Introduction of C-Programming
Data types in C-Programming
Control Statements in C-Programming
Loops in C-Programming
Pointers in C-Programming
Structure and Union in C-Programming
List of C Program
Others Related Links
Friday, December 19, 2014
Program to print pattern 12345 1234 123 12 1 in C
Program to print pattern 12345 1234 123 12 1 in C
#include <stdio.h>
#include<conio.h>
void main()
{
int i, j;
for(i=5;i>=1;i--)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
}
Output:
12345
1234
123
12
1
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment