Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Number Pattern 59

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

Photo Credit to CodeToFun

C Number Pattern 59

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

example.c
Copied
Copy To Clipboard
#include 

int main() {
 int i, j;
 int k = 6, l = 13, m = 16;

 // Outer loop for rows
 for (i = 1; i <= 5; i++) {
  // Inner loop for columns 
  for (j = 1; j <= 5; j++) {
   // Conditions to determine the number to be printed 
   if (i == 1) 
    printf("%-3d", j);
   else if (j == 5)
    printf("%-3d", k++);
   else if (i == 5)
    printf("%-3d", l--);
   else if (j == 1)
    printf("%-3d", m--);
   else
    printf("   ");
  }
  printf("\n");
 }

 return 0;
}

💻 Testing the Program

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

Output
1  2  3  4  5
16          6
15          7
14          8
13 12 11 10 9

🧠 How the Program Works

Let's break down the logic behind the code:

  1. The program begins by declaring and initializing variables: i and j for the loop counters, and k, l, and m for the initial values of specific numbers to be printed.
  2. The program uses two nested loops to iterate through the rows and columns of the pattern.
  3. Inside the inner loop, several conditions are checked to determine which number to print in each position of the pattern.
  4. If i (the current row) is equal to 1, it means it's the first row, so the numbers from 1 to 5 are printed in ascending order using the inner loop counter j.
  5. If j (the current column) is equal to 5, it means it's the last column, so the variable k is printed and then incremented by one.
  6. If i is equal to 5, it means it's the last row, so the variable l is printed and then decremented by one.
  7. If j is equal to 1, it means it's the first column, so the variable m is printed and then decremented by one.
  8. If none of the above conditions are true, it means it's an inner position in the pattern, and therefore, three spaces are printed to maintain the pattern's structure.
  9. After printing each row, a newline character (\n) is printed to move to the next line.
  10. The process continues for all five rows, resulting in the desired pattern.

The pattern that is printed resembles a square with numbers on its borders, with the top row displaying numbers from 1 to 5 in ascending order, the rightmost column displaying numbers from 6 to 10 in ascending order, the bottom row displaying numbers from 13 to 9 in descending order, and the leftmost column displaying numbers from 16 to 12 in descending order. The inner positions are filled with spaces to maintain the alignment of the pattern.

💯 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 number 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
10 months ago

If you have any doubts regarding this article (C Number Pattern 59) 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