system.c 107 B

123456
  1. #include <stdlib.h>
  2. int main(int argc, char ** argv) {
  3. system("echo test of system");
  4. return 0;
  5. }