C++ COURSE

C++ Strings

Learn C++ programming with EDUHUB Code Hub.

C++ Strings

Strings are used to store text.



#include <iostream>

#include <string>


using namespace std;


int main(){

string name="Navitha";


cout << name;


return 0;

}


Navitha