c-first-steps

a C playground
Index Commits Files Refs README
   1 /*    Exercise 1-6 & 1-7    */
   2 
   3 #include <stdio.h>
   4 
   5 int main (void)
   6 {
   7     int c;
   8 
   9     printf("%d\n", EOF);
  10 
  11     while ((c = getchar()) != EOF)
  12         putchar(c);
  13 
  14     return 0;
  15 }