1.无参数无返回值的函数
void thisIsFunction(void)
{
printf("这是无参数有返回值的函数");
}
2.有参数无返回值的函数
void thisIsFunction(int age, char* name)
{
printf("age = %d\nname = %s\n", age, name);
}
3.无参数有返回值的函数
char* thisIsFunction(void)
{
char* name = "这是无参数有返回值的函数";
return name;
}
4.有参数有返回值的函数
char* thisIsFunction(char* name)
{
return name;
}