Hey,
I was just wondering if i can also use the Qt Creator to code standard console applications. I tried it with just an hello world app
Qt Code:
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(void)
  5. {
  6. cout << "Hello World";
  7. return 0;
  8. }
To copy to clipboard, switch view to plain text mode 
and it compiled fine. But when i start the .exe its says that various .dll's are needed to run it which makes not much sense. So, do i have to to check something that it compiles without Qt stuff, or is it not possible?