c语言printf输出空格
时间: 2023-09-07 10:15:01 浏览: 7116
C语言中的printf函数
5星 · 资源好评率100%
在 C 语言中,可以使用空格字符 ' ' 来输出空格。例如,以下代码会输出一个空格和字符串 "world":
```c
printf("hello world\n");
printf("hello world\n"); // 输出两个空格
```
另外,也可以使用转义字符 '\t' 输出制表符,例如:
```c
printf("hello\tworld\n"); // 输出 "hello world"
```
还可以使用循环来输出多个空格,例如:
```c
int i;
for(i = 0; i < 5; i++) {
printf(" ");
}
```
这段代码会输出 5 个空格。
阅读全文