Technically speaking, you can create a useful, functional C program that consists solely of statements involving only the C keywords. However, this is quite rare because C does not provide keywords that perform such things as input/output (I/O) operations, high-level mathematical computations, or character handling.
for more details visit:
http://free4ebook.com/The%20Library%20and%20Linking.html
Chat with our AI personalities
You should actually turn the question around: does the Turbo C++ graphics library support Windows XP? The answer is yes it does, provided you are using a version of Turbo C++ for Windows XP and above.
With TLIB.EXE. TLIB mylib.lib /C /E +myfile1.obj +myfile2.obj ...
Compilation, linking, library-creation is not defined in the C-language standards, so it is platform-dependent. The core of it: create the objects modules, and find a library-creating utility (TLIB.EXE, ar, etc)
Dynamic linking is accomplished by placing the name of a sharable library in the executable image. Actual linking with the library routines does not occur until the image is run, when both the executable and the library are placed in memory. An advantage of dynamic linking is that multiple programs can share a single copy of the library.
turbo c