Contact Learn C
Copy

Program 302: Program to Display Symbol X Pattern

Program 302: Program to Display Symbol X Pattern
 
#include<stdio.h>
main()
{
 int len,i,j,rows;
 printf("Enter number of rows\n");
 scanf("%d",&rows);
 for(i=0;i<rows;i++)
 {
  for(j=0;j<rows;j++)
  {
   if(i==j || i+j==rows-1)
   {
    printf("*");
   }
   else{
    printf(" ");
   }
  }
  printf("\n");
 }
}
Explanation:

//Coming Soon...

Output:
Program to Display Symbol X Pattern

Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide