Skip to content

Instantly share code, notes, and snippets.

@otya128
Last active August 29, 2015 14:05
Show Gist options
  • Save otya128/43a7e8519d184ee69c46 to your computer and use it in GitHub Desktop.
Save otya128/43a7e8519d184ee69c46 to your computer and use it in GitHub Desktop.
Exec

#Exec systemを呼ぶだけ

#include <stdlib.h>
int main(int argc, char **argv)
{
if(argc == 2)
{
system(argv[1]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment