link.c 102 B

12345
  1. #include <unistd.h>
  2. int main(int argc, char** argv) {
  3. int status = link("link.c", "link.out");
  4. }