My Visual Studio 2017 (VS2017) connects to the Linux system successfully with the following code:
#include <cstdio>
int main()
{
printf("hello from ConsoleApplication1!\n");
return 0;
}
But, when the code executes, I can't see the "hello from ConsoleApplication1!" message in the VS2017 output window. Where can I find it?

