Welcome

Little Technical C, C++, QT

Below are from here : http://mcmtechtips.blogspot.com/


Qt (pronounced officially as cute, though more commonly as Q.T. ) is a cross-platform application framework that is widely used for developing application software with a graphical user interface (GUI) (in which cases Qt is referred to as a widget toolkit), and also used for developing non-GUI programs such as command-line tools and consoles for servers.

#include 
 
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel label("Hello, world!");
    label.show();
    return app.exec();
}
#qmake -project
#qmake
#make/gmake/nmake - as needed by OS and compiler environment


You can free to share or ask OOPS here oops!!

No comments:

Post a Comment