什么是输出?

什么是输出?使用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

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

相关推荐

发表回复

登录后才能评论