Created
February 13, 2019 05:37
-
-
Save dogtopus/48ba4322ec5ddd2b63bf1f2b415250ce to your computer and use it in GitHub Desktop.
Make memes by abusing perror()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <errno.h> | |
#include <stdio.h> | |
int main(void) { | |
errno = 0; | |
perror("Error"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment