i am getting an problem
string ccc="example";
int cc=atoi(csession);
it says cannot convert ‘std::string’ to ‘const char*’ for argument ‘1’ to ‘int atoi(const char*)’
do i should convert the string to char array and then apply to atoi
or is there is any other way