Skip to content

Instantly share code, notes, and snippets.

@kristianlm
Created February 17, 2016 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristianlm/a145b7db150e400b645e to your computer and use it in GitHub Desktop.
Save kristianlm/a145b7db150e400b645e to your computer and use it in GitHub Desktop.
modified hello-world.c
@@ -1,6 +1,5 @@
#include <stdio.h>
int main() {
- fprintf(stderr, "Goodbye, ");
- fputs("World!\n", stderr);
+ fprintf(stderr, "Goodbye, World!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment