如何在不使用 string.h 和循环的情况下查找 C 中字符串的长度?
在本节中,我们将讨论如何在 C 中不使用字符串头文件和循环的情况下查找字符串的长度。字符串长度查找问题可以在没有 string.h 的情况下轻松解决。我们可以使用递归函数来执行此操作。
但在这个例子中,我们不使用递归。我们使用另一个诀窍来实现它。我们使用 printf() 函数来获取长度。printf() 函数返回它已打印的字符数。如果我们仅使用 printf() 函数打印该字符串,我们可以轻松获取其长度。
示例代码
#include<stdio.h> main() { char* my_str = "This is a String"; printf("The string is: "); int length = printf("%s", my_str); printf("\nThe length of string is: %d", length); }
输出
The string is: This is a String The length of string is: 16
广告