有如下程序:#include<stdio.h> mai

有如下程序:

#include<stdio.h>
main()
{
    char s[]="012xy\08s34f4w2";
    int i,n=0;
    for(i=0;s[i]!=0;i++)
    if(s[i]>= "0"&&s[i]<= "9")n++;
    printf("%d\n",n);
}

程序运营后的输出成果是( )

答案
B

题目信息

题号:1269
题型:单选题
难度:普通