代码中只要有用到printf
scanf 等函数,头文件就要写 #include<stdio.h> 这个在代码中是必不可少的,因为编写代码就是为了输出结果,用到像getch()这种键盘输入函数的话,就需要用到#include <conio.h>用到系统标准输出函数的话,就用#include <stdlib.h>。
我在使用的时候,很少加#include <conio.h>,感觉加 #include<stdio.h> 已经足够了。
int sort(int n)
{
n=n-1;
return n;
n=n+1;
}
main()
{
int
a=4;
a=sort(a);
}
就像这个例子,在main函数中你需要返回sort函数处理后的值n,就得在sort函数中写return n;这里返回的值n必须跟函数名前的类型一致,例如本例中
int fun(int n)返回的值就为
int型,要是不返回任何值就写成
void fun(int n),在sort函数中直接写个return就行了,
注意:return代表这个函数执行结束,就像sort函数中n=n+1;这句就不会执行的。
这是不返回任何值时sort函数的写法:
void
sort(int n)
{
n=n-1;
return;
}