有如下程序 #include <stdio.h> #include <string.h> main( ) { printf("%d\n", strlen("0\t\nA011\1")); } 程序运行后的输出结果是

admin2021-04-28  22

问题 有如下程序
#include   <stdio.h>
#include   <string.h>
main( )
{
    printf("%d\n", strlen("0\t\nA011\1"));
}
程序运行后的输出结果是

选项 A、8
B、9
C、7
D、10

答案A

解析 strlen是求字符串长度的函数,"0\t\nA011\1"是一个长度为8的字符串,其中\t、\n、\1均为转移字符常量,但是长度也是1,因此输出结果是8,答案为A选项。
转载请注明原文地址:https://jikaoti.com/ti/dBz0FFFM
0

最新回复(0)