make H alphabet with stars in c
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
int main()
{
int i,j,k;
system("color 0d");
for(i=0;i<=11;i++)
{
for(j=0;j<2;j++)
{
printf("*");
}
for(k=1;k<5;k++)
{
if(i>4&&i<7)
{
printf("**");
}
else
{
printf(" ");//two spaces
}
}
for(j=4;j<6;j++)
{
printf("*");
}
printf("\n");
}
getche();
}