要打印的文本内容:
Startled by the sudden sound,sally shouted,
"By the great pumkin,wahat was that!"
程序代码如下:
#include <stdio.h>
int main(void)
{
printf("\aStartled by the sudden sound,sally shouted,\n");
printf("\"By the great pumkin,wahat was that!\"");
getchar();
return 0;
}
此题主要考察转义序列的使用