Axat Bhardwaj
Axat Bhardwaj

Reputation: 5

Unable to build c code in visual studio code

1) using tmd-gcc 2) path is set

getting These errors while trying to Build the program

Upvotes: 0

Views: 71

Answers (1)

0___________
0___________

Reputation: 68013

It is a very bad idea to have C&C++ directory. Rename it to C_CPP for example and everything will work OK

Generally speaking try to avoid any non ASCII chars in the paths and filenames when programming. Even if theoretically speaking system allows them, the tools (like compilers, linkers etc) used in development might not.

Upvotes: 2

Related Questions