OOPSP
OOPSP

Reputation: 27

Cannot compile C program in Visual studio code

I am getting this results in the terminal.

gcc.exe: error in visual studio code.

How to fix this?

I was working well until now, don't know what happened.

enter image description here

Upvotes: 1

Views: 891

Answers (1)

anastaciu
anastaciu

Reputation: 23792

If you want to add spaces to the name of your C/C++ files, you will then need to let the compiler know that this is a single file, this can be achived by using quotation marks around the file name:

gcc "If condition.c"

That said, it's not the best idea to have C/C++ files with spaces, you shouldn't do it.

Suggestion: rename If condition.c as If-condition.c or If_condition.c

Upvotes: 2

Related Questions