网站大量收购闲置独家精品文档,联系QQ:2885784924

c语言补充内容.ppt

  1. 1、本文档共138页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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

文档评论(0)

feixiang2017 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档