This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
This is the example of C program to print the patterns using *
sign. Before going through the example, You must know about following topics.
This is the simple example using for loop. We also print other patterns as possible. See below for more example.
Algorithm
SETP 1 : Start SETP 2 : Declare variable i,j and n SETP 3 : Read n SETP 4 : Repeat this process until i < n STEP 4.1 : Repeat this process until j <= i STEP 4.1.1 : Print "*" STEP 4.2 : Print "n" to break line STEP 5 : end
Flowchart

Program to print inverted half pyramid pattern using stars
// C program to print half inverted pyramid pattern using stars #include <stdio.h> int main(){ int i, j, n, k = 0; printf("How many rows : "); scanf("%d",&n); printf("\n\n"); for(i = n; i >= 1; --i){ for(j = 1; j <= i; ++j) printf("*"); printf("\n"); } return 0; }
Output:
******* ****** ***** **** *** ** *
Program to print full pyramid pattern using stars
// C program to print full pyramid pattern using stars #include <stdio.h> int main() { int i, j, n, k = 0; printf("How many rows : "); scanf("%d",&n); printf("\n\n"); for(i = 1; i <= n; ++i, k = 0){ for(j = 1; j <= n-i; ++j) printf(" "); while(k != 2 * i-1) { printf("* "); ++k; } printf("\n"); } return 0; }
Output:
* * * * * * * * * * * * * * * * * * * * * * * * *
Program to print full pyramid pattern using stars
// C program to print full pyramid pattern using stars #include <stdio.h> int main() { int i, j, n, k = 0; printf("How many rows : "); scanf("%d",&n); printf("\n\n"); for(i = 1; i <= n; ++i, k = 0){ for(j = 1; j <= n-i; ++j) printf(" "); while(k != 2 * i-1) { printf("* "); ++k; } printf("\n"); } return 0; }
Output:
* * * * * * * * * * * * * * * * * * * * * * * * *
Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- C Program to Calculate Difference Between Two Time Periods
- C Program to Check Whether a Character is an Alphabet or not
- C Program to Display Fibonacci Sequence
- Display the pattern like right angle using an asterisk
- C Program to Check Whether a Number can be Expressed as Sum of Two Prime Numbers
- C Program to Check Whether a Number is Prime or Not
- C Program to Multiply Two Floating-Point Numbers
- C Program to Check Armstrong Number
- C Program to Print an Integer (Entered by the User)
- C Program to Convert Binary Number to Decimal
Leave comment