当前位置:首页 > 行业动态 > 正文

c语言怎么输出运算符

在C语言中,输出运算符主要使用printf函数,以下是一些常用的输出运算符及其用法:

1、%d:用于输出十进制整数。

2、%c:用于输出字符。

3、%s:用于输出字符串。

4、%f:用于输出浮点数。

5、%%:用于输出百分号(%)。

示例代码:

#include <stdio.h>
int main() {
    int a = 10;
    char b = 'A';
    float c = 3.14;
    char str[] = "Hello, World!";
    printf("整数a的值为:%d
", a);
    printf("字符b的值为:%c
", b);
    printf("浮点数c的值为:%f
", c);
    printf("字符串str的值为:%s
", str);
    printf("百分号表示为:%%
");
    return 0;
}

运行结果:

整数a的值为:10
字符b的值为:A
浮点数c的值为:3.140000
字符串str的值为:Hello, World!
百分号表示为:%
0