C语言打印长字符串实例 C语言printf函数返回值实例 C语言scanf函数实例 C语言打印长字符串实例 /* longstrg.c –– printing long strings */ #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"); /* ANSI C */ return 0; } C语言printf函数返回值实例 C语言scanf函数实例