APUE course source code
guowenxue
2 days ago 68826376ee5f47783c644c6604f4411ec747cd7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*********************************************************************************
 *      Copyright:  (C) 2025 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  hello.c
 *    Description:  This file is hello world example program.
 *
 *        Version:  1.0.0(10/10/2025)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "10/10/2025 03:10:01 PM"
 *
 ********************************************************************************/
 
#include <stdio.h>
 
int main (int argc, char **argv)
{
    printf("Hello, World!\n");
 
    return 0;
}