Skip to content

Instantly share code, notes, and snippets.

@odeke-em
Last active August 29, 2015 14:17
Show Gist options
  • Save odeke-em/5f001a29b143080100b0 to your computer and use it in GitHub Desktop.
Save odeke-em/5f001a29b143080100b0 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
FILE *ifp = fopen(__FILE__, "r");
if (ifp == NULL)
return -1;
char c;
while ((c = getc(ifp)) != EOF) putchar(c);
fclose(ifp);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment