That's linking to Microsoft's C library in order to use printf. But of course you could do the same thing using just kernel32.dll functions.
The minimal print function on Win32 is WriteFile, using GetStdHandle to get the file handle for STD_OUTPUT_HANDLE.
The minimal print function on Win32 is WriteFile, using GetStdHandle to get the file handle for STD_OUTPUT_HANDLE.