#include <iostream> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); // write your code here...... char *start,*end; start = str; end = str; while(*end != '\0') end++; cout<<(end-start)<<endl; return 0; }