“您仔细看看,这还不是翔?”_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > “您仔细看看,这还不是翔?”

“您仔细看看,这还不是翔?”

 2013/11/24 3:28:39  garbageMan  博客园  我要评论(0)
  • 摘要:出处:狗屁不通的“视频专辑:零基础学习C语言(小甲鱼版)”(2)评论20楼在C语言的历史上,ISO一共有过3个C标准,相关条款如下:ISO/IEC9899:1990Thefunctioncalledatpropramstartupisnamedmain.Theimplementationdeclaresnoprototypeforthisfunction.Itcanbedefinedwithnoparametersintmain(void){/*...*/
  • 标签:

出处:

狗屁不通的“视频专辑:零基础学习C语言(小甲鱼版)”(2) 评论 20楼

 

在C语言的历史上,ISO一共有过3个C标准,相关条款如下:

ISO/IEC 9899:1990

The function called at propram startup is named main .The implementation declares no prototype for this function. It can be defined with no parameters
int main(void) { /*...*/ }
or with two parameters (referred to here as argc and argv. though any names may be used, as they are local to the tunction in which they are declared)

int main(int argc, char *argv[]) { /*. . . */ }
If they are defined,the parameters to the main function shall obey the following constraints

……

ISO/IEC 9899:1999

The function called at program startup is named main. The implementation declares no prototype for this function. It shall be defined with a return type of int and with no parameters:
int main(void) { /* ... */ }
or with two parameters (referred to here as argc and argv, though any names may be used, as they are local to the function in which they are declared):
int main(int argc, char *argv[]) { /* ... */ }
or equivalent;9) or in some other implementation-defined manner.

ISO/IEC 9899:2011:

5.1.2.2.1 Program startup
1 The function called at program startup is named main. The implementation declares no prototype for this function. It shall be defined with a return type of int and with no parameters:
int main(void) { /* ... */ }
or with two parameters (referred to here as argc and argv, though any names may be used, as they are local to the function in which they are declared):
int main(int argc, char *argv[]) { /* ... */ }
or equivalent;10) or in some other implementation-defined manner.

总结:

屌丝水平也敢在这大放厥词,简直逗

  这句话说的真TMD的好!“让我呵呵一笑”。傻B并不难得,难得的是傻B竟然敢于装B!

上一篇: BroadcastReceiver详解 下一篇: MVC会员注册
  • 相关文章
发表评论
用户名: 匿名