[ create a new paste ] login | about

Link: http://codepad.org/XtvsU5xW    [ raw code | fork ]

C, pasted on Aug 23:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#define N 4096
int main() {
  int i, c;
  for (i = 0; i < N; i++) {
    if((c = getchar()) == EOF)
      break;
    putchar(c);
  }
  return 0;
}
/* end */


Output:
No errors or program output.


Create a new paste based on this one


Comments: