Pattern 12: C Program to print Cross or X star pattern using loops
Write a C Program to print Cross or X star pattern:
Program:
-
#include<stdio.h>
-
int main()
-
{
-
int i,j,n;
-
printf(“Enter any number : “);
-
scanf(“%d”,&n);
-
-
for(i=0;i<n;i++)
-
{
-
for(j=0;j<n;j++)
-
{
-
if(i==j || j==(n–i–1))
-
{
-
printf(” *”);
-
}
-
else
-
{
-
printf(” “);
-
}
-
}
-
printf(“n“);
-
}
-
return 0;
-
}
Output:
![]() |
X-Star pattern program output on GCC |
Similar Star pattern programs:
- Basic star pattern program (The square pattern with stars).
- Triangle star pattern program.
- Triangle star pattern program with Spaces.
- Pyramid star pattern.
- Reverse Pyramid program.
- Diamond Star pattern program.
- star pattern program.
- K-Star pattern program.
- Empty Rhombus program.
More C programs:
- Program to calculate Maximum of three numbers.
- What are Prime Number and C program to Check given number is Prime or Not
- Check given Number is Prime or not Using Square Root(sqrt) Function.(Efficient way)
- C Program to generate prime numbers between two numbers
- C Program to generate first N prime numbers.
- C program to Calculate percentage of student.
- C Program to check given year is the leap or not.
- C Program to convert Temperature.
- C program to understand type conversation.
- Finding Largest of two numbers using the conditional operator in C.
- C program to calculate the simple Interest,
- C program to understand Size of Operator.
- 200+ C Programs.
C Tutorials with simple Examples:
- Arithmetic Operators with Examples.
- Arithmetic operators priority and it’s Associativity.
- Modulus Operator and Hidden Concepts of Modulus Operator.
- Precedence Table or Operators Priority Table.
- Assignment Operator, Usage, Examples
- Increment Operator and Different types of Increment operators Usage with Examples.
- Decrement Operator and Different types of Decrement operators with Examples.
- Logical or Boolean Operators.
How print
a
b
c
upto z
How to print
a
b
c
d
e…upto z
Thanks nice programs for beginners. I found fer more pattern programs :