Skip to content

Instantly share code, notes, and snippets.

@tylerkerr
Created February 15, 2018 18:04
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 tylerkerr/0ca19b1702f544924614dd963c9f7dbf to your computer and use it in GitHub Desktop.
Save tylerkerr/0ca19b1702f544924614dd963c9f7dbf to your computer and use it in GitHub Desktop.
normal printing to stdout
#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