Write a C Program For Print \"I AM IDIOT\" Instead Of Your Name Using Array
#include<stdio.h> #include<conio.h> main() { char ch[]="I AM AN IDIOT."; char c='A'; int i=0; printf("Write Your Name \n\n"); while(c) { c=getch(); printf("%c\a",ch[i]); i++; if(i==14) { printf(" "); i=0; } } }
Output:Write Your Name
I AM IDIOT . I AM IDIOT
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
I AM IDIOT . I AM IDIOT
need an explanation for this answer? contact us directly to get an explanation for this answer