100% prog pattern generation (traingle with stars)
#include<stdio.h>
void main( )
{
int i,j,n;
printf("\n enter number of lines in which pattern is required:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=i;j<n;j++)
printf(" ");//one space between quotes
for(j=1;j<=2*i-1;j++)
printf("*");
printf("\n");
}
}
తెర మీద
n=5 ఇస్తే
*
***
*****
*******
*********
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.