在返回对printf()
的调用之后,此变量将保存输出的字符数,直到遇到%n
的代码点。
#include <stdio.h>
int main(void)
{
int count;
printf("this%n is a test/n", &count);
printf("%d", count);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266460.html
在返回对printf()
的调用之后,此变量将保存输出的字符数,直到遇到%n
的代码点。
#include <stdio.h>
int main(void)
{
int count;
printf("this%n is a test/n", &count);
printf("%d", count);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266460.html