google.com, pub-8786015629279405, DIRECT, f08c47fec0942fa0 Write a Program to Print 12344321 123 321 12 21 1 1 in C

Write a Program to Print 12344321 123 321 12 21 1 1 in C

0



Write a Program to Print 12344321 123**321 12****21 1*******1

#include<stdio.h>
#include<conio.h>
void main()
{
  int i,j,k;
  clrscr();
  for(i=4;i>=1;i--)
  {
    for(j=1;j<=4;j++)
    {
      if(j<=i)
        printf("%d",j);
      else
        printf(" ");
    }
    for(j=4;j>=1;j--)
    {
      if(j<=i)
        printf("%d",j);
      else
        printf(" ");
    }
    printf("\n");
  }
getch();
 }
Output:
12344321
123    321
12       21
1           1


Output






Write a Program to Print 12344321 123  321 12    21 1       1 in C

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.

Thank you for your interest 😊

We will back shortly after reviewing...

Thank you for your interest 😊

We will back shortly after reviewing...

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !
To Top