void hello(void) { printf("Hello world!\n“); }
这样定义了一个最简单的函数,该函数的功能只是打印出hello world!。
int add(int x, int y) { return x + y; }
这个函数既有参数又有返回值。