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;
}
/*
Main.c:1:8: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
 include"stdio.h"
        ^
*/

Double click to view unformatted code.


Back to problem 43