|
0 1 2
3 4
5 6
7 8
9 10
11 12
13
14 15
16
17
18
19
20
21
22 23
24 25
26 27
28 29
30
Learn C with example
Print Reverse Star Triangle Using C
In this example we are going to make a reverse star
triangle using c.
In this example we are going print * followed by
n-1 space in first line,** followed by n-2 space ,*** followed by n-3 space and
so on ..
Source Code Of Example
#include<stdio.h>
#include<conio.h> /* * */
void main() /* * * */
{ /* * * * */
int i,j,k,n; /* * * * * */
clrscr(); /* * * * * * */
printf("Enter a number\t");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
printf(" ");
for(k=1;k<=i;k++)
printf("*");
printf("\n");
}
getch();
}
|
Download Source Code
Output Of Example
Enter a number 5
*
* *
* * *
* * * *
* * * * *
|
0 1 2
3 4
5 6
7 8
9 10
11 12
13
14 15
16
17
18
19
20
21
22 23
24 25
26 27
28 29
30
C Aptitude Questions
C Interview
Questions And Answers
C Objective Interview Questions And
Answers(10)
C Subjective Interview Questions And
Answers(100)
C
syntax, semantics and simple programming questions(61)
C Interview Questions And Answers( Objective and Subjective)
|