Technical Interview Preparation

Get hired by top tech companies with our comprehensive interview preparation.

Get Started

Category: C++

C C++

Convert std::string to const char* in C++

This post will discuss how to convert a std::string to const char* in C++. The returned pointer should point to a char array containing the same sequence of characters as present in the string object and an additional null terminator at the end.

C C++

Convert a std::string to char* in C++

This post will discuss how to convert a std::string to char* in C++. The returned array should contain the same sequence of characters as present in the string object, followed by a terminating null character at the end.

Do NOT follow this link or you will be banned from the site!