You are on page 1of 1

#include <QApplication> #include <QLabel> int main (int argc, char *argv[]){ QApplication app(argc, argv); QLabel lblHola("Hola

mundo Qt"); lblHola.show(); return app.exec(); }

You might also like