All pastes #2069169 Raw Edit

Anonymous

public text v1 · immutable
#2069169 ·published 2011-05-25 21:15 UTC
rendered paste body
#include <stdio.h>
main(int c) {
  while(1) {
    c = getchar(); if(feof(stdin)) break;
    putchar(~c);
  }
}