//Program to print Alphabet C in c with CBhashaGyan
#include<stdio.h>
int main()
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=1;j<=4; j++)
{
if((i==1 || i==5) && (j==2 || j==3))
printf("* "); //star and space
else if( i>=2 && i<=4 && j==1)
printf("* "); //star and space
else
printf(" "); //double space
}
printf("\n"); //new line
}
return 0;
}
#include<stdio.h>
int main()
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=1;j<=4; j++)
{
if((i==1 || i==5) && (j==2 || j==3))
printf("* "); //star and space
else if( i>=2 && i<=4 && j==1)
printf("* "); //star and space
else
printf(" "); //double space
}
printf("\n"); //new line
}
return 0;
}
Output:
* *
*
*
*
* *
Practical demonstration in Pictorial form-
Output:
Program to print alphabet C in C Language without Graphics Output |
No comments:
Post a Comment