View Code of Problem 43

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

Double click to view unformatted code.


Back to problem 43