calculate the length of char*

#include <iostream>
using namespace std;

int len(char* str)
{
    int i = 0;
    while (*str != '\0')
    {
        ++i;
        ++str;
    }
    return i;
}

int main()
{
    char *m = "aaaa";
    cout << len(m);
}

just that

你可能感兴趣的:(include)