使用\打印长字符串

#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;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...