CP-VSCode-Setup
CP-VSCode-Setup copied to clipboard
A Competitive Programming Setup (C++) in Windows and Ubuntu
the following code does not work for me under Windows 10 with Visual Studio Code: ``` "args": ["${fileDirname}//output.txt"], ``` This works though: ``` "args": ["", "${fileDirname}\\output.txt"], ```
The build settings do not work when following the updated VS Code Docs for installing Mingw64. The new path as recommended does not match the tasks.json file and results in...
while changing the path, new path in C_cppproperties is : "C:\\msys64\\mingw64\\bin\\gcc.exe" but it shows error in "cStandard": "gnu18" and after hovering over it says : Version of the C language...