#include <iostream> #include <cstring> using namespace std; int main() { char ary[] = "Welcome to Softhunt.net"; cout << "Length of String = " << strlen(ary)<<endl; return 0; }