Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

strlen in cpp

#include <cstring>
#include <cstring>

using namespace std;

int main(void) {
  char stringName[] = "This contains the content of your string";
  int stringLength = strlen(stringName);
  cout << "String: " << stringName << endl << "Length of String: " << stringLength << endl;
  
  return 0;
}
 
PREVIOUS NEXT
Tagged: #strlen #cpp
ADD COMMENT
Topic
Name
3+9 =