代碼:程序清單4.14_longstrg.c程序_《C Primer Plus》P77
阿新 • • 發佈:2018-06-20
include -- 縮進 轉義 應用 目的 new 中間 轉義符 // 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.\n");
printf("Here's the another way to print a long string.\n"); /* 切勿讓本行的第一單詞縮進,否則會產生相應的空格數 */
printf("Here's the newest way to print a "
"long string.\n"); /* 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