VOOZH about

URL: https://www.geeksforgeeks.org/c/c-program-to-print-triangle/

⇱ C Program To Print Triangle - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C Program To Print Triangle

Last Updated : 2 Aug, 2022

Here, we will see how to print a triangle using the C program

Input: 

5

Output:

* 
* * 
* * * 
* * * * 
* * * * * 

Approach: 

The approach is very simple. We just execute a nested loop, and only print characters when the inner loop is executed after that just change the line.

Example:


Output
*
**
***
****
*****
******

Time Complexity: O(n2)

Auxiliary Space: O(1),  No extra Space is used.

Comment
Article Tags: