एक संख्या n को देखते हुए और हमें सितारों की अधिकतम n संख्या के एरो स्टार पैटर्न को प्रिंट करना होगा।
इनपुट 4 का स्टार पैटर्न इस तरह दिखेगा -

उदाहरण
Input: 3 Output:

Input: 5 Output:

नीचे इस्तेमाल किया गया तरीका इस प्रकार है -
- इनपुट को पूर्णांक में लें।
- फिर n स्पेस और n स्टार प्रिंट करें।
- n>1 तक की कमी.
- अब n तक वृद्धि करें।
- और रिक्त स्थान और तारों को बढ़ते क्रम में प्रिंट करें।
एल्गोरिदम
Start In function int arrow(int num) Step 1-> declare and initialize i, j Step 2-> Loop For i = 1 and i <= num and i++ Loop For j = i and j < num and j++ Print a space Loop For j = i and j <= num and j++ Print "*" Print newline Step 3-> Loop For i = 2 and i <= num and i++ Loop For j= 1 and j < I and j++ Print a space Loop For j = 1 and j <= i and j++ Print "*" Print newline In function int main() Step 1-> declare and initialize num = 4 Step 2-> call arrow(num)
उदाहरण
#include <stdio.h>
// arrow function
int arrow(int num) {
int i, j;
// Prints the upper part of the arrow
for (i = 1; i <= num; i++) {
// to print the spaces
for (j = i; j < num; j++) {
printf(" ");
}
// to print the * for the pattern
for (j = i; j <= num; j++) {
printf("*");
}
printf("\n");
}
// Prints lower part of the arrow
for (i = 2; i <= num; i++) {
// to print the spaces
for (j = 1; j < i; j++) {
printf(" ");
}
// to print the * for the pattern
for (j = 1; j <= i; j++) {
printf("*");
}
printf("\n");
}
return 0;
}
int main() {
// get the value from user
int num = 4;
// function calling
arrow(num);
return 0;
} आउटपुट
यदि उपरोक्त कोड चलाया जाता है तो यह निम्न आउटपुट उत्पन्न करेगा -
