非是非
Thinking, Express
|

测验题目

问题:
Implement C funtion "strlen" in your own code.
参考答案:
----
unsigned int strlen(const char *s){
    unsigned int i = 0;
    while(s[i] != '\0'){
        i++;
    }
    return i;
}
----
unsigned int strlen(const char *s){
    const char *p = s;
    while(*p++ != '\0');
    return p-s-1;
}
非是非 | 联系 | 关于 | 向开发者捐赠 |

版权所有 © 非是非, 2007~2015

我觉得这个站点或页面: 有用 没用 有趣 无趣 有错 |