Skip to content

Instantly share code, notes, and snippets.

@aligalehban
Created June 27, 2018 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aligalehban/6dcf981f9deb348a8629f50dd39fa2bb to your computer and use it in GitHub Desktop.
Save aligalehban/6dcf981f9deb348a8629f50dd39fa2bb to your computer and use it in GitHub Desktop.
Length of String in c++ source code - www.alighalehban.com
#include <iostream>
using namespace std;
int main()
{
string str = "C++ Programming";
// you can also use str.length()
cout << "String Length = " << str.size();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment