以下程序: #include main() { char str[10]; scanf(“%s”,&str); printf(“%s\ntt str): } 运行上面的程序,输入字符串how are

admin2020-07-28  34

问题 以下程序:
    #include
    main()
    {  char str[10];
    scanf(“%s”,&str);
    printf(“%s\ntt str):
    }
    运行上面的程序,输入字符串how are you,则程序的执行结果是(    )。

选项 A、how
B、how are you
C、h
D、howareyou

答案A

解析 当从键盘输入how are you时,由于scanf输入函数的特点是遇到空格时结束读入字符,因此,该程书只将how这3个字符送到了字符数组str中,并在其后自动加上结束符“\0”。
转载请注明原文地址:https://kaotiyun.com/show/dX3p777K
0

最新回复(0)