ExecMain.c 186 B

1234567891011121314
  1. #include <stdio.h>
  2. void FiveFunction();
  3. void TwoFunction();
  4. int main()
  5. {
  6. FiveFunction();
  7. TwoFunction();
  8. printf("Dependency test executable ran successfully.\n");
  9. return 0;
  10. }