/* ***********************************************
Write a program to print pattern
date:31-05-2019
created by:ANIL DURGAM
*****************************************************/
#include<stdio.h>
//#include<math.h>
int main()
{
int i,j,k,n,step=1;
printf("enter row size:");
scanf("%d",&n);
for(i=1;i<=2*n-1;i++)
{
for(j=1;j<=step;j++)
{
printf("*");
}
if(i<n)
{
step+=1;
}
else
{
step-=1;
}
printf("\n");
}
return 0;
}
Write a program to print pattern
date:31-05-2019
created by:ANIL DURGAM
*****************************************************/
#include<stdio.h>
//#include<math.h>
int main()
{
int i,j,k,n,step=1;
printf("enter row size:");
scanf("%d",&n);
for(i=1;i<=2*n-1;i++)
{
for(j=1;j<=step;j++)
{
printf("*");
}
if(i<n)
{
step+=1;
}
else
{
step-=1;
}
printf("\n");
}
return 0;
}
No comments:
Post a Comment