选择题   有如下程序:
      #include <stdio.h>
      #include <string.h>
      main()
      {
        printf('%d\n',strlen('0\n011\0'));
      }
    程序运行后的输出结果是______。
 
【正确答案】 A
【答案解析】[考点] 字符串、函数的递归、标识符的作用域和存储类 strlen是求字符串长度的函数,故程序运行后的输出结果为5。