Patterns In C Language

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

In C, patterns are specific arrangements of characters that can be printed to the console using loops and control flow statements. Patterns can be used for visual representation of data or for creating a user interface. Here are a few examples of patterns that can be created using C:

  1. Printing a triangle pattern:

Copy code

for (int i = 1; i <= 5; i++) {    for (int j = 1; j <= i; j++) {        printf("* ");    }    printf("\n"); }

This code uses nested loops to print a triangle pattern of asterisks. The outer loop controls the number of rows and the inner loop controls the number of asterisks in each row.

  1. Printing a pyramid pattern:

Copy code

int k = 0; for (int i = 1; i <= 5; i++) {    for (int j = 1; j <= 5 - i; j++) {        printf(" ");    }    while (k != (2 * i - 1)) {        printf("* ");        k++;    }    k = 0;    printf("\n"); }

This code uses nested loops and a while loop to print a pyramid pattern of asterisks. The outer loop controls the number of rows and the inner loop controls the number of spaces before the asterisks. The while loop controls the number of asterisks in each row.

  1. Printing a diamond pattern:

Copy code

int k = 0; for (int i = 1; i <= 5; i++) {    for (int j = 1; j <= 5 - i; j++) {        printf(" ");    }    while (k != (2 * i - 1)) {        printf("* ");        k++;    }    k = 0;    printf("\n"); } for (int i = 5 - 1; i >= 1; i--) {    for (int j = 1; j <= 5 - i; j++) {        printf(" ");    }    k = 0;    while (k != (2 * i - 1)) {        printf("* ");        k++;    }    printf("\n"); }

This code uses nested loops, a while loop, and a second loop to print a diamond pattern of asterisks. The first loop creates the upper half of the diamond and the second loop creates the lower half of the diamond.

These are just a few examples of patterns that can be created in C. There are many other patterns that can be created using different combinations of loops, control flow statements and characters.

7. Loops

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support