belongs to collection: Array C Programs List
Write a program which will take Any input of character input while giving input it will show asterisk (*) instead of the character .
#include<stdio.h> #include<conio.h> main() { char ch[]="**********."; char c='A'; int i=0,j; printf("Write Your Name \n\n"); while(c) { c=getch(); printf("%c\a",ch[i]); i++; if(i==10) { printf(" "); i=0; } } }
Output:
Write Your Name
********** *********** *********** ********** *******
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
Write Your Name
********** *********** *********** ********** *******
need an explanation for this answer? contact us directly to get an explanation for this answer