Thanks for the reply.
I have added a getchar(), that should pause the execution until a user presses a key. However, this doesn't display the console window.
I am also using the debug target.
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
getchar();
return 0;
}
Try running it from a test bat/cmd file:
save the following as a .bat or .cmd file, then run it:
@echo off
echo "Starting test application...."
call "/path_to_executable.exe"
echo "Test Application done!"
@pause
Just to eliminate some possibilities.