system.c 99 B

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