首页 > 代码库 > (不包括\0) 编写一个int string_len(char *s), 返回字符串s的字符长度
(不包括\0) 编写一个int string_len(char *s), 返回字符串s的字符长度
#include <stdio.h> /* (不包括\0) 编写一个int string_len(char *s), 返回字符串s的字符长度 */ int string_len(char *s); int main() { //char *name = "itcast"; // 男 \u434\u4343\u434 int size = string_len("tre777"); printf("%d\n", size); return 0; } int string_len(char *s) { // 1.定义一个新的指针变量指向首字符
char *p = s; /* while ( *s != ‘\0‘ ) { s++; } */ while ( *s++ ) ; return s - p - 1; } /* int string_len(char *s) { // 记录字符的个数 int count = 0; // 如果指针当前指向的字符不是‘\0‘ // 首先*s取出指向的字符 // 然后s++ while ( *s++ ) { // 个数+1 count++; // 让指针指向下一个字符 //s = s + 1; //s++; } return count; } * / /* int string_len(char *s) { // 记录字符的个数 int count = 0; // 如果指针当前指向的字符不是‘\0‘ while ( *s != ‘\0‘) { // 个数+1 count++; // 让指针指向下一个字符 //s = s + 1; s++; } return count; }*/
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。