View Code of Problem 43

#include<stdio.h>
#include<ctype.h>
int main(){
	int i;
    char c;
	for (i=0;c=getchar();i++)
		if ( isalpha(c))
			printf("%c",c);

	return 0;

}

Double click to view unformatted code.


Back to problem 43