/********************************************************************************* * 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 * ChangeLog: 1, Release initial version on "10/10/2025 03:10:01 PM" * ********************************************************************************/ #include int main (int argc, char **argv) { printf("Hello, World!\n"); return 0; }