#include <stdio.h>
#include <stdlib.h>
int main(void) {
// Method One
printf("Line-1");
printf("Line-1\n");
// Method Two
printf("Line-2Line-2\n");
// Method Three
printf("Line-3"
"Line-3\n");
return EXIT_SUCCESS;
}
原文地址:http://my.oschina.net/Xwoder/blog/324101