14 lines
		
	
	
		
			382 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			382 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* longstrg.c - 打印较长的字符串 */
 | |
| #include <stdio.h>
 | |
| 
 | |
| int main(void)
 | |
| {
 | |
|     printf("Here's one way to print a ");
 | |
|     printf("long string.\n");
 | |
|     printf("Here's another way to print a \
 | |
| long string.\n");   // 注意:如果这行前面带了缩进,那么缩进也会被打印出来
 | |
|     printf("Here's the newest way to print a "
 | |
|     "long string.\n");
 | |
| 
 | |
|     return 0;
 | |
| } |