How can I know which version of C is supported by the VS2019 compiler? I looked in the project C/C++ and Linker command lines and found no -std=Cxx flag. The following code compiles:
for (int i = index; i < nb_users - 1; i++) {
users[i] = users[i + 1];
}
So I guess it's C99 according to this, but is there a way to check this somewhere in VS2019?