Where is the Linux Console output when using remote debugging with Visual Studio 2017?

My Visual Studio 2017 (VS2017) connects successfully to Linux system with the following code:

#include <cstdio>

int main()
{
    printf("hello from ConsoleApplication1!\n");
    return 0;
}

      

But when the code is executed, I don't see "hello from ConsoleApplication1!" message in VS2017 output window. Where can I find it?

+3


source to share


1 answer


I Find It Finally: Debug Menu: Linux Console



+4


source







All Articles