什么是输出?使用printf()打印的内容可以叫作输出。#include stdio.h int main()
编程学习网为您整理以下代码实例,主要实现:什么是输出?,希望可以帮到各位朋友。
什么是输出?使用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);
}