SyntaxFix
Write A Post
Hire A Developer
Questions
namespace std { inline string to_string(int _Val) { // Convert long long to string char _Buf[2 * _MAX_INT_DIG]; snprintf(_Buf, "%d", _Val); return (string(_Buf)); } }
You can now use to_string(5).
to_string(5)