This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
c-archive/hello-world-qt.c

13 lines
174 B
C
Raw Permalink Normal View History

2022-07-31 09:30:19 -04:00
#include <stdio.h>
#include <QtGui>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QLabel label("Hello, world!");
label.show();
return app.exec();
}