Quote Originally Posted by vani.pv View Post
I need to convert char array to string
The solution depends on the encoding used to represent text in the char array. QString has a few convenience functions for a few common ones (fromAscii(), fromLatin1(), fromUtf8()) and the encoding defined by the current locale (fromLocal8Bit()). For more options see the QTextCodec class.