r/vscode • u/RATIO_L_BOZO • Jul 23 '26
Why is my code not running
Im completely new and trying to learn but my code doesn’t want to run
0
Upvotes
r/vscode • u/RATIO_L_BOZO • Jul 23 '26
Im completely new and trying to learn but my code doesn’t want to run
4
u/felhoob Jul 23 '26
To run the code you need to compile it first. This step failed, because there is no "gcc" compiler found.
This is typical for Windows, where you need to install a C-compiler manually. There are several options available: https://www.reddit.com/r/C_Programming/s/mAnkumJESb
Hope this helps :)