Skip to main content
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
Source Link

C, 140 bytes by betsegby betseg

#include<stdio.h> int main(){int a=getchar();while(a!=EOF){//\a=getchar(); if(a!=10&&a!=32)//\\putchar(a^10^32); putchar(a);a=getchar();}} 

(I also hope I'm doing this right.)

C, 140 bytes by betseg

#include<stdio.h> int main(){int a=getchar();while(a!=EOF){//\a=getchar(); if(a!=10&&a!=32)//\\putchar(a^10^32); putchar(a);a=getchar();}} 

(I also hope I'm doing this right.)

C, 140 bytes by betseg

#include<stdio.h> int main(){int a=getchar();while(a!=EOF){//\a=getchar(); if(a!=10&&a!=32)//\\putchar(a^10^32); putchar(a);a=getchar();}} 

(I also hope I'm doing this right.)

Source Link
Riley
  • 11.7k
  • 2
  • 23
  • 53

C, 140 bytes by betseg

#include<stdio.h> int main(){int a=getchar();while(a!=EOF){//\a=getchar(); if(a!=10&&a!=32)//\\putchar(a^10^32); putchar(a);a=getchar();}} 

(I also hope I'm doing this right.)