It seems rather tedious to output to debug window. Where can I find cout output if I am writing a non-console information ?
cout
Like:
double
Instead of using cout, create a log file and write anything you want into it.
Edit: Use this simple code for writing to a log file.
ofstream log; log.open ("log.txt"); log << "Writing this to a file.\n"; log.close();