View Code of Problem 43

#include<stdio.h> 
int main()
{
	int i;
	char a[256];
	gets(a);
	for (i=0; i<255;i++)
	{
		if ((a[i] >= 'A' && a[i] <= 'z'))
		{
			printf("%c", a[i]);
		}
		else
		continue;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 43