三种打印较长字符串的方式

#include

void main()

{

    printf("here's one way to print a ");

    printf("long string .\n");

    printf("here's one way to print a \

long string .\n");

    printf("here's one way to print a "

     "long string .\n");



}

你可能感兴趣的:(三种打印较长字符串的方式)