scanf()使用%n格式符

带有%nscanf()将从输入读取的字符数存储到相应参数指向的整数变量中,直到遇到%n

#include <stdio.h>

int main(void)
{
   char *p;
   int n;

   printf("Enter an address: ");

   scanf("%p %n", &p, &n);

   printf("%d", n);

   return 0;
}

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

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

相关推荐

发表回复

登录后才能评论