- 1、本文档共138页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c语言补充内容
C语言补充内容;内容;内容;命令行参数;命令行参数(2);/* Fig. 14.3: fig14_03.c Using command-line arguments */
#include stdio.h
int main( int argc, char *argv[] )
{
FILE *inFilePtr; /* input file pointer */
FILE *outFilePtr; /* output file pointer */
int c; /* define c to hold characters input by user */
/* check number of command-line arguments */
if ( argc != 3 ) {
printf( Usage: mycopy infile outfile\n );
} /* end if */
else {
/* if input file can be opened */
if ( ( inFilePtr = fopen( argv[ 1 ], r ) ) != NULL ) {
/* if output file can be opened */
if ( ( outFilePtr = fopen( argv[ 2 ], w ) ) != NULL ) {
; /* read and output characters */
while ( ( c = fgetc( inFilePtr ) ) != EOF ) {
fputc( c, outFilePtr );
} /* end while */
} /* end if */
else { /* output file could not be opened */
printf( File \%s\ could not be opened\n, argv[ 2 ] );
} /* end else */
} /* end if */
else { /* input file could not be opened */
printf( File \%s\ could not be opened\n, argv[ 1 ] );
} /* end else */
} /* end else */
return 0; /* indicates successful termination */
} /* end main */;内容;可变长的实参列表;/* Fig. 14.2: fig14_02.c Using variable-length argument lists */
#include stdio.h
#include stdarg.h
double average( int i, ... ); /* prototype */
int main( void )
{
double w = 37.5;
double x = 22.5;
double y = 1.7;
double z = 10.2;
printf( %s%.1f\n%s%.1f\n%s%.1f\n%s%.1f\n\n,
w = , w, x = , x, y = , y, z = , z );
printf( %s%.3f\n%s%.3f\n%s%.3f\n,
The average of w and x is , average( 2, w, x ),
The average of w, x, and y is , average( 3, w, x, y ),
The average of w, x, y, and z is ,
average( 4, w, x, y, z ) );
return 0; /* indicates successful termination */
} /* end main */;
/* calculate average */
double average( int i, ... )
{
double total = 0; /* initialize total */
in
您可能关注的文档
- CADCAM建模技术及产品数据类型.ppt
- CAPRI培训讲义.ppt
- CET-4听力讲座.ppt
- CCTV-2全家总动员电视栏目合作招商方案.ppt
- ch 7 组织设计精简.ppt
- ch01_动物细胞培养基本技术.ppt
- CET高频短语总结.ppt
- CH09-索引、视图和事务.ppt
- ch01植物组织与器官培养-2.ppt
- CH1-5ed_计算机网络概述.ppt
- 2024年青岛版六三制新八年级历史下册阶段测试试卷544.doc
- 2024年粤教新版必修1历史下册月考试卷含答案.doc
- 2024年西师新版必修1历史下册月考试卷993.doc
- 2024年湘教版选修2历史上册月考试卷144.doc
- 2024年外研版三年级起点一年级英语上册阶段测试试卷含答案988.doc
- 2024年北师大版必修3历史下册阶段测试试卷396.doc
- 2024年湘师大新版八年级历史下册阶段测试试卷含答案839.doc
- 2024年陕教新版九年级数学上册月考试卷102.doc
- 2024年浙教版选修3地理上册阶段测试试卷399.doc
- 2024年鲁科版选修4历史上册月考试卷838.doc
文档评论(0)