View Code of Problem 43

#include<stdio.h>
#include<string.h>
int main()
{
	char c[256];
	int t,a;
    t=1;a=1;
    gets(c);
	while ((c[a]>64)&&(c[a]<123))
	{
		printf("%c",c[a]);
	    a++;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 43