Just use QLabel::setText(const QString &) function with your array as the argument. QString class will make conversion for you.
For instance:
Qt Code:
char array[] = "Some text"; QLabel label; label.setText(array);To copy to clipboard, switch view to plain text mode
Bookmarks