有以下程序
#include <stdio.h>

有以下程序
#include <stdio.h>
Int fun(char s[])
{ int n=0;
While(*s<='9'&&*s>='0') { n=10*n+*s-'0';s++;}
Return(n);
}
Main()
{ char s[10]={ '6', '1','*','4','*', '9', '*', '0', '*'};
Printf("%d\n",fun(s));
}
程序的运行结果是______。

A.9

B.61490

C.61

D.5

正确答案是C