// Program to print alphabet J in C with C Bhasha Gyan
#include<stdio.h>
int main()
{
int i, j;
for (i=1; i<=6; i++)
{
printf("\t"); // for Horizontal Space
for(j=1; j<=5; j++)
{
if( i==1 || j==3 || (i==5 && j==1))
printf("* "); // star and space
else if( i==6 && j>=1 && j<=3)
printf("* "); //star and space
else
printf(" "); // double space
}
printf("\n"); //new line
}
return 0;
}
Output:
* * * * *
*
*
*
* *
* * *
No comments:
Post a Comment