预测以下程序的输出?
#include "stdio.h"
int main()
{
char arr[100];
printf("%d", scanf("%s", arr));
/* Suppose that input value given
for above scanf is "GeeksQuiz" */
return 1;
}
(A) 9
(B) 1
(C) 10
(D) 100
答案: (B)
说明:在C中,scanf返回no。已成功读取的输入的数量。参见https://www.geeksforgeeks.org/archives/674
这个问题的测验
感谢您阅读这篇文章!
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。