代码:程序清单4.14_longstrg.c程序_《C Primer Plus》P77
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码:程序清单4.14_longstrg.c程序_《C Primer Plus》P77相关的知识,希望对你有一定的参考价值。
// longstrg.cpp : 定义控制台应用程序的入口点。 // /* 时间:2018年06月19日 22:43:45 代码:程序清单4.14_longstrg.c程序_《C Primer Plus》P77 目的:实现长句字符串输出的三种方法 */ #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { printf("Here's one way to print a "); printf("long string. "); printf("Here's the another way to print a long string. "); /* 切勿让本行的第一单词缩进,否则会产生相应的空格数 */ printf("Here's the newest way to print a " "long string. "); /* ANSI C */ getchar(); return 0; } /* 在VS中运行结果: ----------------------------------------- Here's one way to print a long string. Here's the another way to print a long string. Here's the newest way to print a long string. ------------------------------------------------ 在百度翻译结果: 这是一种打印长字符串的方法。 这是另一种打印长字符串的方法。 这是打印长字符串的最新方法。 ------------------------------------------------ 总结: 1>.使用转义符 时,接下句首行时切勿缩进; 2>.切勿在句中(即在双引号中间进行折行); ------------------------------------------------ *
以上是关于代码:程序清单4.14_longstrg.c程序_《C Primer Plus》P77的主要内容,如果未能解决你的问题,请参考以下文章
代码:程序清单4.16_varwid.c程序_《C Primer Plus》P81
代码:程序清单4.12_floatcnv.c程序_《C Primer Plus》P75
程序代码清单3.3.2_toobig.c程序_《C Primer Plus》P40
代码:程序清单4.13_prntval.c程序_《C Primer Plus》P76