使用\打印长字符串

#include stdio.hint main(void){printf(line 1 );printf(line 2.\\n);printf(Heres another way to print a \\

编程学习网为您整理以下代码实例,主要实现:使用\打印长字符串,希望可以帮到各位朋友。

#include <stdio.h>
int main(voID)
{
    printf("line 1 ");
    printf("line 2.\n");
    printf("Here's another way to print a \
           long string.\n");

    printf("Here's the newest way to print a "
           "long string.\n");      /* ANSI C */

    return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐