I have installed SDK 2010.05 on windows 7 64bit.

then I try the simplest C source, the first example of every book that explain C language.

the hallo_world.c
Qt Code:
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. printf("hallo world\n");
  5. return 0;
  6. }
To copy to clipboard, switch view to plain text mode 
No errors or warning in compilation (how can be?) but tring executing no string is output, neither on QT Creator's 'Application Output' windows nor on cmd console.

where I am wrong?

thanks