Write C++ program to find string length

Introduction

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
using namespace std;
 
int main()
{
    string str = "Tech Study";
 
    // you can also use str.length()
    cout << "String Length = " << str.size();
 
    return 0;
}

Result

Write C++ program to find string length
Write C++ program to find string length

Leave a Comment