15 lines
245 B
C
15 lines
245 B
C
|
#include <stdio.h>
|
||
|
|
||
|
// c 语言中可以使用无类型的函数参数
|
||
|
// C++ 中不允许使用无类型的函数参数 (对照 d7.cpp)
|
||
|
void show(x)
|
||
|
{
|
||
|
printf("x = %d\n", (int)x);
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
show(20);
|
||
|
show(15.0);
|
||
|
return 0;
|
||
|
}
|