C Program to Print V Star Pattern

Write a C program to print V star pattern using for loop. #include <stdio.h> int main() { int rows; printf(“Enter V Shape Star Pattern Rows = “); scanf(“%d”, &rows); printf(“Printing V Shape Star Pattern\n”); for (int i = 1; i <= rows; i++) { for (int j = 1; j <= i; j++) { printf(“*”); … Read more

C Program to Print Inverted V Star Pattern

Write a C program to print inverted V star pattern or half diamond inside a square star pattern using for loop. #include <stdio.h> int main() { int rows; printf(“Enter Inverted V Shape Star Pattern Rows = “); scanf(“%d”, &rows); printf(“Printing Inverted V Shape Star Pattern\n”); for (int i = rows; i >= 1; i–) { … Read more

C Program to Print H Star Pattern

Write a C program to print H star pattern using for loop. #include <stdio.h> int main() { int rows, i, j, k, l; printf(“Please Enter H Pattern Rows = “); scanf(“%d”, &rows); printf(“Printing H Star Pattern\n”); for (i = 1; i <= rows; i++) { for (j = 1; j <= i; j++) { printf(“*”); … Read more

C Program to Print Hollow Sandglass Star Pattern

Write a C program to print hollow sandglass star pattern using for loop. #include <stdio.h> int main() { int rows, i, j, k; printf(“Enter Hollow Sandglass Star Pattern Rows = “); scanf(“%d”, &rows); printf(“Printing Hollow Sandglass Star Pattern\n”); for (i = 1; i <= rows; i++) { for (j = 1; j < i; j++) … Read more

C Program to Print W Star Pattern

Write a C program to print W star pattern using for loop. In this code, the printingStars function iterate and prints the stars, and the printingSpaces prints the spaces to print the W shape. #include <stdio.h> void printingStars(int rows) { for (int i = 0; i < rows; ++i) { printf(“*”); } } void printingSpaces(int … Read more

C Program to Print Christmas Tree Star Pattern

Write a C program to print Christmas tree star pattern using for loop. #include <stdio.h> int main() { int width, height, space, i, j, k, n = 1; printf(“Please Enter Chirstmas Tree Width & Height = “); scanf(“%d %d”, &width, &height); space = width * height; printf(“Printing Chirstmas Tree Pattern of Stars\n”); for (int x … Read more

C Program to Print 8 Star Pattern

Write a C program to print 8 star pattern using for loop. #include <stdio.h> int main() { int rows; printf(“Please Enter 8 Star Pattern Rows = “); scanf(“%d”, &rows); printf(“Printing 8 Pattern of Stars\n”); for (int i = 1; i <= rows * 2 – 1; i++) { if (i == 1 || i == … Read more