/* hello world */ #include /* 函数定义 */ void say() { printf("hello world"); } int main() /* main 函数 */ { say(); // 函数调用 return 0; }