access denied
Compilation problem
Tagglink
#2
Hi Golden.
You want to use some sort of compiler to compile your C++ code.
Try installing clang. Download link. Make sure to check one of the “Add LLVM to the system PATH” options when installing.
Then restart your Powershell session and do
clang++ helloworld.cpp -o helloworld.exe to build your program, and then
.\helloworld.exe to run it.
0 Likes
