Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Alphabet Pattern 34

Posted in C Tutorial
Updated on Jan 10, 2024
By Mari Selvan
👁️ 133 - Views
⏳ 4 mins
💬 1 Comment
C Alphabet Pattern 34

Photo Credit to CodeToFun

C Alphabet Pattern 34

Here`s a program that prints the above alphabet pattern using C Programming:

example.c
Copied
Copy To Clipboard
#include <stdio.h>

int main() {
  int i, j, k;
  // First Part
  for (i = 65; i <= 69; i++) {
    for (j = 69; j >= 65; j--) {
      if (i == j)
        printf("%c", j);
      else
        printf(" ");
    }
    for (k = 66; k <= 69; k++) {
      if (i == k)
        printf("%c", k);
      else
        printf(" ");
    }
    printf("\n");
  }
  // Second Part
  for (i = 68; i >= 65; i--) {
    for (j = 69; j >= 65; j--) {
      if (i == j)
        printf("%c", j);
      else
        printf(" ");
    }
    for (k = 66; k <= 69; k++) {
      if (i == k)
        printf("%c", k);
      else
        printf(" ");
    }
    printf("\n");
  }
  return 0;
}

💻 Testing the Program

When you run the above program, it will print the following output:

Output
    A
   B B
  C   C
 D     D
E       E
 D     D
  C   C
   B B
    A

🧠 How the Program Works

Let's break down the logic behind the code:

  1. Include the necessary header file stdio.h for input/output operations.
  2. Define the main() function, which serves as the entry point of the program.
  3. Declare three integer variables: i, j, and k.
  4. First Part: Execute a nested loop to print the first part of the pattern. The outer loop iterates from 65 to 69 (ASCII values for characters A to E).
  5. Within the outer loop, start the first inner loop from 69 (ASCII value for character E) and decrement j until it reaches 65 (ASCII value for character A).
  6. In each iteration of the inner loop, check if i is equal to j. If they are equal, print the character represented by j. Otherwise, print a space.
  7. Start the second inner loop from 66 (ASCII value for character B) and iterate up to 69 (ASCII value for character E).
  8. In each iteration of the second inner loop, check if i is equal to k. If they are equal, print the character represented by k. Otherwise, print a space.
  9. After completing both inner loops, print a newline character \n to move to the next line.
  10. Repeat steps 5 to 9 for the remaining iterations of the outer loop.
  11. Second Part: Execute another nested loop to print the second part of the pattern. The outer loop starts from 68 (ASCII value for character D) and decrements i until it reaches 65 (ASCII value for character A).
  12. Within the outer loop, start the first inner loop from 69 (ASCII value for character E) and decrement j until it reaches 65 (ASCII value for character A).
  13. In each iteration of the inner loop, check if i is equal to j. If they are equal, print the character represented by j. Otherwise, print a space.
  14. Start the second inner loop from 66 (ASCII value for character B) and iterate up to 69 (ASCII value for character E).
  15. In each iteration of the second inner loop, check if i is equal to k. If they are equal, print the character represented by k. Otherwise, print a space.
  16. After completing both inner loops, print a newline character \n to move to the next line.
  17. Repeat steps 12 to 16 for the remaining iterations of the outer loop.
  18. Finally, return 0 to indicate successful execution of the program and terminate the main() function.

Each letter is printed in a triangular pattern with spaces to create the desired shape.

💯 Tips for Enhancement:

Explore the versatility of this pattern by adjusting its parameters. Whether you increase or decrease the size, tweak the spacing, or modify the characters used, each change opens up a world of possibilities, allowing you to customize and create your unique visual effects.

✔ Conclusion:

Creating visually appealing patterns is not only a fun endeavour but also a great way to enhance your programming or design skills. We hope this tutorial has inspired you to explore the world of creative coding. Share your creations with us, and let your imagination run wild!

🤗 Closing Call-to-Action:

We'd love to see your unique interpretations of the alphabet pattern. Share your creations in the comments below, and don't hesitate to reach out if you have any questions or suggestions for future tutorials. Happy coding!

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
9 months ago

If you have any doubts regarding this article (C Alphabet Pattern 34) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy