-
Notifications
You must be signed in to change notification settings - Fork 13
prog_001
Zhang Jc edited this page Nov 21, 2016
·
2 revisions
参考:
老式c语言 形参类型能省,形参名不可以省。但小括号外,花括号前,要加形参类型声明:
#include <stdio.h>
fun(a)
int a;
{
printf("a=%d",a);
}
main()
{
int a = 123;
fun(a);
return 0;
}结果输出 123

Wiki: wiki.jcix.top ~聚沙成塔~ Blog: blog.jcix.top