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