Previous | Home | Next |
In this example in first line we are printing * followed by n-1 spaces, in second line * followed by n-2 spaces, so on
#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(" "); printf("*"); printf("\n"); } getch(); }
*
*
*
*
*
Previous | Home | Next |