In Windows, there is a default C library msvcrt.dll.
Is it possible to write simple C programs that uses functions from msvcrt.dll only? That would relieve the need for installing the recent VC runtime.
I think a possible way is to explicitly specify /NODEFAULTLIB, and use the dll import procedure to import msvcrt.dll functions.
Anyone has a clue?