Compile C ++ file in VS Code using external cmd

1

I can compile files in VS Code normally, however the files are shown in the terminal of the own program, which does not allow the insertion of characters. How can I configure to be able to use a terminal that allows me to interact?

    
asked by anonymous 24.10.2018 / 18:07

1 answer

0

Press Control + 'to open the terminal, and enter g ++ -o file_name.cpp filename_out_out, an executable will be generated. Make sure you have g ++ installed.

    
29.10.2018 / 02:12