#include<stdio.h>

#include<unistd.h>

#include<fcntl.h>


int main(){

  int fd;

  fd = open("test1", O_RDWR | O_CREAT, 0600) k  

  dup2(fd,1);

  write(fd, "abcde", 6); 

  printf("Hello world!! ");

}


이거 왜 실행하면 아무것도 안떠???

자세하게 설명해줄 형 있어??? ㅠㅠㅠ