#include <stdio.h> #include <stdlib.h> int main() { printf("%d", printf("%d", printf("%d", 43))); system("pause"); return 0; }
大家平时经常使用printf这个输出函数,但是有多少人想过它的返回值是什么?或者想过它有没有返回值!
通过上面程序的运行结果就可以知道printf函数的返回值是被输出值的字符个数。
在我们平时的学习应该要知其然更要知其所以然,这样我们才能更好的更深入的学习知识。
时间: 2024-11-03 21:20:00