C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
Enter your name
hope you will like it😀😀 */
#include <stdio.h>
#include<string.h>
int main() {
char ch[100];
int length,i;
gets(ch);
length=strlen(ch);
printf("if you like it give it a thumbs up\n");
printf("entered input\n");
for(i=0;i<length;i++){
if(ch[i]=='A' || ch[i]=='a'){
printf(" ***\n* *\n*****\n* *\n* *");
}
else if(ch[i]=='b' || ch[i]=='B'){
printf("*******\n* *\n*******\n* *\n*******");
}
else if(ch[i]=='c' || ch[i]=='C'){
printf("*********\n** \n** \n*********");
}
else if(ch[i]=='d' || ch[i]=='D'){
printf("**********\n** **\n** **\n** **\n*********");
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run