2
0

system.c 100 B

123456
  1. #include <stdlib.h>
  2. int main(void) {
  3. system("echo test of system");
  4. return EXIT_SUCCESS;
  5. }