什么是输出?使用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);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/266471.html