APUE Learning Example Source Code
Guo Wenxue
2018-11-15 8d13b7c3d12e05ce4620e43901a554d80d5c7b23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <unistd.h>
#include <string.h>
 
#define MSG_STR "Hello World\n"
 
int main(int main, char *argv[])
{
    printf("%s", MSG_STR);
    fputs(MSG_STR, stdout);
    write(STDOUT_FILENO, MSG_STR, strlen(MSG_STR));
 
    return 0;
}