-
#include<iostream> #include<string.h> using namespace std; int main() { char str[200] = "webisworld"; cout<<"Length: " << strlen(str); return 0; }
Length: 10