Created
February 15, 2018 18:04
-
-
Save tylerkerr/0ca19b1702f544924614dd963c9f7dbf to your computer and use it in GitHub Desktop.
normal printing to stdout
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 <stdlib.h> | |
int main(void) | |
{ | |
char toprint[56] = "python -c 'import os; os.system(\"echo $(printf howdy)\")'"; | |
system(toprint); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment