使用printf()函数打印变量内容

要打印变量的内容,请使用printf()函数并指一些新格式选项。

#include <stdio.h> 
int main()
{ 
   //variable declarations 

   int x; 
   float y; 
   char c; 

   //variable initializations 

   x = -1234; 
   y = 123.12; 
   c = 'M'; 

   //printing variable contents to standard output 
   printf("/nThe value of integer variable x is %d", x); 
   printf("/nThe value of float variable y is %f", y); 
   printf("/nThe value of character variable c is %c/n", c); 
}

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

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

相关推荐

发表回复

登录后才能评论