/* ************************************************************************
* Filename: 02_dup.c
* Description:
* Version: 1.0
* Created: 2011年04月14日 20时47分52秒
* Revision: none
* Compiler: gcc
* Author: wenhao (wh), hnrain1004@gmail.com
* Company: sunplusapp
* ************************************************************************/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int fd;
char str[]="hello world/n";
fd = dup(fileno(stdout));
write(fd,str,strlen(str));
return 0;
}