gpt4 book ai didi

c - 编程第一天 : Problem with\n in C

转载 作者:行者123 更新时间:2023-12-02 19:22:40 26 4
gpt4 key购买 nike

这是一个非常小的问题,但我似乎无法像我的书向我展示的那样开始新的一行。 (Perry 和 Miller 的《C 编程绝对初学者指南》)我将在下面粘贴我的代码。

最后一个词应该在单独的一行上,但由于某种原因\n 不起作用。公平地说,这本书基于 Code::Blocks 10.05,所以它可能是格式问题?

    // Absolute Beginner's Guide to C, 3rd Edition
// Chapter 4 Example 1--Chapter4ex3.c



#include <stdio.h>

main()

{

/* These three lines show you how to use the most popular Escape

Sequences */

printf("Column A\tColumn B\tColumn C");

printf("\nMy Computer\'s Beep Sounds Like This: \a!\n");

printf("\"Letz\bs fix that typo and then show the backslash ");

printf("character \\\" she said\n");


return 0;

}

最佳答案

每当你需要在新行中添加某些内容时,你必须在其前面添加\n 。因此,如果您想在新行中添加“said”,请在“said”之前添加\n。就像这样 printf("character\\\"she\nsaid");

关于c - 编程第一天 : Problem with\n in C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62845111/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com