码迷,mamicode.com
首页 > 编程语言 > 详细

c语言参数类型

时间:2014-09-20 09:58:37      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   div   sp   log   c   

今天看ntcip源码时看到,函数参数有点不一样。在函数实现时,没有括号中没有指明参数类型。注意这里说的是函数实现,不是说函数声明。这里在函数列表括号后面做了类型的说明,以前看到过,没想起来,今天做个记录。我在.cpp就是c++中试过,不行。这里os是windows,编译器是vc6.0

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 void show(int);
 4 
 5 int main(){
 6     int num_show = 1;
 7 
 8     show(num_show);
 9 
10     return 0;
11 }
12 
13 void show(num)                    //这里没有说明参数类型
14 int num;                        //这里说明了参数类型,注意后面有个分号
15 {
16     printf("num = %d\n", num);
17 }

ps:这里是c语言,不是c++

c语言参数类型

标签:style   blog   color   io   os   div   sp   log   c   

原文地址:http://www.cnblogs.com/luckygxf/p/3982974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!