如果现在想要输出一个常量10,那代码的书写形式是不是以下这几种都行?
第一种printf("%d\n",10);
第二种printf("10");
第三种 int a =10;
printf("%d\n",a);
对的,都可以
except the first & the third