摘要: 这样的不带参数的函数声明,在c中是合法的,表示任意参数;当然我们自己写代码最好不要这样写了,但是读老代码还是会遇到; 1 #include <stdio.h> 2 3 void fun(); 4 5 int main() 6 { 7 fun(1); 8 return 0; 9 } 10 11 voi 阅读全文
posted @ 2016-03-25 23:10 AlexAlex 阅读(938) 评论(0) 推荐(0) 编辑