Open Rohyoohyun opened 2 months ago
#include <stdio.h> #include <string.h> #include <ctype.h> int main(){ char str[101] = {0}; gets(str); for(int i=0; i<strlen(str); i++){ if(isalpha(str[i])) printf("%c", str[i]); } return 0; }