Files
qt-creator/share/qtcreator/templates/wizards/plaincapp/main.c
hjk 10d3d00c76 a simple 'new project' wizard for a plain C project
Change-Id: Ie3102362af67858790ff3121d2db56a7183906d4
Reviewed-on: http://codereview.qt-project.org/5468
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
2011-09-27 16:19:21 +02:00

8 lines
83 B
C

#include <stdio.h>
int main(void)
{
printf("Hello World!\n");
return 0;
}