system.c 129 B

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