×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Left Side Triangle by asterisk Right Side Triangle by asterisk Extended
Right Side Triangle by asterisk - Pattern - C Language
2624    Arnab De    30/06/2019

Write a C Program to print the pattern shown in the figure [Right Side Triangle]

In this type of program we always find how many column present in a particular row. Because we know that we are always print in VDU horizontally. Here column number is same as row number and the spaces are present at the left side of the character is equal to the (total no of row - current row). It is Left Side Triangle.

softetechnologies
#include <stdio.h>

int main()
{
    int r,c,n;
    printf("Enter Total Number of row : ");
    scanf("%d",&n);
    
    for(r=0;r<n;r++)
    {
        for(s=0;s<=n-r;s++)
        {
            printf(" ");
        }
		for(c=0;c<=r;c++)
        {
            printf("*");
        }
        printf("\n");
    
    }
    
    return 0;
}
softetechnologies

OUTPUT :

Enter Total Number of row : 6

     *
    **
   ***
  ****
 *****
******
softetechnologies
Left Side Triangle by asterisk Right Side Triangle by asterisk Extended
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Sri Sri Ramakrishna Paramahamsa
The world is needed a mixture of truth and make-believe. Discard the make-believe and take the truth.
Sri Sri Ramakrishna Paramahamsa
6732
72.11
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     51825
25/06/2018     43668
01/01/2018     42784
28/06/2017     40515
02/08/2017     39335
01/08/2017     33545
06/07/2017     33299
15/05/2017     32662
14/07/2017     28872
11/09/2018     28679
softetechnologies