编程学习网为您整理以下代码实例,主要实现:什么是输出?,希望可以帮到各位朋友。
什么是输出?使用printf()
打印的内容可以叫作输出。
#include <stdio.h>
int main()
{
int x = 0;
printf("\nThe value of x is %d\n", x);
x++;
printf("\nThe value of x is %d\n", x);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!