| 
//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 | 
Write a Program to Print 12344321 123**321 12****21 1*******1 in C
Friday, April 17, 2020
0
Share to other apps



 
 
