C Programming language

adplus-dvertising
C Program example: Enter a number and print star line in Diagonally opposite
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();
}
Output: Enter a number 5

            *
          *
        *
      *
    *

Previous Home Next