使用%d转换说明符和printf()语句显示整数数据类型

#include <stdio.h>

int main()
{
    printf("%d", 55); 
    return 0;
}

执行结果为:

55

%d转换说明符还可用于输出声明为整数数据类型的变量的内容。

#include <stdio.h>

int main()
{
    int operand1;  

    operand1 = 29; 

    printf("The value of operand1 is %d", operand1); 
    return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266535.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论