What are the important libraries involved in Windows programming?

What are the important libraries involved in Windows programming?



There libraries used in Win32API are as follows:

- MSVCRT.DLL: is used as a dynamic link library or DLL, which consists of the implementation logics.

- The implementation of the standard library (stdlib) and its functions is selected for Windows programming environment.

- The functions that are used get defined in the common header files stdio.h, string.h, stdlib.h, and other library files that are associated.

- WS2_32.DLL: it provides Winsock2 library consists of the standard socket API that can be used to communicate on the internet.
Post your comment