2_8C.C
上传用户:wyn840322
上传日期:2007-01-13
资源大小:294k
文件大小:1k
源码类别:

数据结构

开发平台:

C/C++

  1. /* ======================================== */
  2. /*    程式实例: 2_8c.c                     */
  3. /*    使用字元阵列来储存格式字串            */
  4. /* ======================================== */
  5. void main()
  6. {
  7.    char format[] = { 'T','h','e',' ','s','c','o',
  8.                      'r','e',' ','i','s',' ','%',
  9.                      'd','n','' };
  10.    int score;                          /* 成绩         */
  11.    score = 100;                        /* 设定成绩内容 */
  12.    printf("使用正常的格式化字符串n");     /* 印出结果     */
  13.    printf("The score is %dn",score);
  14.    printf("使用字符数组的格式化字符串n");
  15.    printf(format,score);
  16. }