Any attempt to compile a .c ( not .cxx) file that includes <windows.h> in a Visual Studio 2019 16.3.5 project using Intel 2019.5 results in the following error
1>C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\include\vcruntime_string.h(18): error : expected an attribute name
1> _NODISCARD _Check_return_
1> ^
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
void test()
{
printf("Hello world\n");
}