View Code of Problem 43

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

Double click to view unformatted code.


Back to problem 43