I am trying to make the to_string(NUMBER) function work in my Ubuntu computer for weeks but it never ever works in the QT environment or anywhere else. My code
to_string(NUMBER)
//Try this if you can't use -std=c++11:- int number=55; char tempStr[32] = {0}; sprintf(tempStr, "%d", number);