Output
1: //*
2: //**
3: //***
4: //****
5: //*****
6: #include<stdio.h>
7: #include<conio.h>
8: void main()
9: {
10: int row,i,j;
11: clrscr();
12: printf("Enter the number of rows you want: \n");
13: scanf("%d",&row);
14: for(i=1;i<=row;i++)
15: {
16: for(j=1;j<=i;j++)
17: {
18: printf("* ");
19: }
20: printf("\n");
21: }
22: getch();
23: }
getsprogramming Tutorials , C Programming, CPP Programming and JAVA Programming , Python Programming , Javascript Programming Welcome to getsprogramming Blog Here You Find Different Programs in Easier way to Explain and gain Knowledge and Try Your Self..Thanks
Showing posts with label pattern1. Show all posts
Showing posts with label pattern1. Show all posts
Friday, 9 October 2015
Write a C Program To Print Triangle Pattern
Subscribe to:
Posts (Atom)