View Code of Problem 43

    #include<stdio.h>
    int main(){
    	char a;
    	while(scanf("%c",&a)!=EOF){
    		if('A'<=a && a<='Z' || 'a'<=a && a<='z')
                  printf("%c",a);
    	}
      return 0;
    }

Double click to view unformatted code.


Back to problem 43