Why not std::string?
Code:
#include <string>
// ...
std::string name = "omshanti";
or
Code:
#include <string>
// ...
std::string name;
name = "omshanti";