下列程序的输出结果是( )。 #include<stdio.h> #include<string.h> main() { char a[]="\n123\\"; printf("%d,%d\n",strlen(A) ,

admin2010-09-05  19

问题 下列程序的输出结果是(    )。
   #include<stdio.h>
   #include<string.h>
   main()
   {  char a[]="\n123\\";
   printf("%d,%d\n",strlen(A) ,sizeof(A) );
   }

选项 A、5,6
B、5,5
C、6,6
D、6,5

答案A

解析 转义字符’\n’表示换行,’\\’表示反斜杠,函数strlen()是计算字符串的长度,不包括文件结束标志 (’\0’),函数sizeof()统计字符串所占的字节数。
转载请注明原文地址:https://kaotiyun.com/show/C5Wp777K
0

最新回复(0)