I'm learning C over the summer with the book "C Programming - A modern approach", now to the problem:
When I write:
#include <stdbool.h>
the compiler can't run the program because it can't include bool. When I use bool straight away it knows what it's supposed to do.
Is this something new in Visual Studio 2017 or do I start the documents wrong and get C# or C++? (I don't know those languages but I supposed boolean is well integrated in them)
I start my compiler by "Windows Desktop Wizard -> Empty project -> Source file -> Add -> New project -> C++ file (.cpp)"
It's not a huge problem (since it mostly makes things easier) but I want to learn C and not C++/C#.