C--3 (Array, Function

来源:互联网 发布:淘宝正品阿迪 编辑:程序博客网 时间:2024/05/16 10:05

Array

#include<stdio.h>int main(){   int c,i,nwhite,nother;   int ndigit[10];   nwhite = nother = 0;   for(i=0;i<10;++i)      ndigit[i]=0;   while( (c=getchar())  != 'Q')       if (c>='0'  &&  c<='9')          ++ndigit[c-'0'];       else  if ( c ==' ' || c =='\n' || c=='\t')                ++nwhite;       else                 ++nother;   printf("digits =");   for(i=0;i<10;++i)       printf(" %d",ndigit[i]);   printf(", white space = %d, other = %d\n",nwhite,nother);}

The declaration:

int ndigit[10];

定义了从ndigit[0]…ndigit[9],
A subscript can be any integer expression,whici includes integer variables like i, and integer constants.

C-'0'

This works only if ‘0’,’1’…’9’; an integer expression;

Function

  • 等用subroutine
  • Encapsulating some computation
  return-type function-name ( parameter declarations, if any)  { declarations  statements }
  • For example:
int power( int base, int n){   statements  }
  • 上例中,{ }内的参数名,只适用本例,与main 函数中同名的参数不相关
  • The value that power computes is returned to main by the return statement.
return expression;
  • There is a return statement at the end of main. Since main is a function like any other, it may return a value to its caller..
  • A return value of zero implies normal termination; non-zero values signal unusual or erroneous termination conditions.
  • We have omitted return statements from our main function up to this point, but we will include them hereafter, as a reminder that programs should return status to their environment.

int power(int  ,  int  );
  • just before main says that power is a function that expects two int arguments and returns an int. Called a function prototype.
0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 武装突袭3没子弹了怎么办 电脑系统注册表文件损坏怎么办 武装突袭3受伤了怎么办 模板跟旺铺版本不符合怎么办 cpu散热硅胶没了怎么办 武装突袭3掉帧怎么办 苹果系统占用内存太大怎么办 电脑上的文件打不开怎么办 word文件打开是乱码怎么办 wps文件打开是乱码怎么办 电脑读tst文件乱码怎么办 智能手机中了勒索病毒怎么办 部队训练脚崴了怎么办 滴滴车型信息识别失败怎么办 先打人被打了怎么办 我被警察打了怎么办 2k13选秀卡住了怎么办 正当防卫二进去之后没有字怎么办 国土防线2子弹打完了怎么办 诛仙宠物满了怎么办 试用联盟认证手机号是空号怎么办 系统出新版本不显示更新怎么办 炉石账号封停怎么办 电脑用户名和密码忘了怎么办 黑猴子棒球1闪退怎么办 斗米兼职报名后怎么办 婴儿足跟血检查有异常怎么办 打印机显示脱机使用打印机怎么办 手机刷机后内存变小了怎么办 吃了解毒丹喝酒怎么办 6s更新ios11失败怎么办 苹果6s手机发热怎么办 苹果手机没有描述文件怎么办 电脑玩穿越火线卡怎么办 老电脑又卡又慢怎么办 梦幻之星4花屏怎么办 失业连续好多天睡不着觉怎么办 工业废气排放总量超标怎么办 lol美服更新不了怎么办 支付宝没法实名额度上限怎么办 苹果手机软件被禁止联网了怎么办