fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. string s = "rajeev";
  7. cout<< s.length()<< endl;
  8. cout << strlen("rajeev")<< endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
6
6