
Originally Posted by
alcopaul
the point of c runtime library being installed in almost every operating system on every hardware that exists today is to use runtime function in a portable way. having your own version of printf, scanf or any generic function of the c library is good for personal gratification when you finish it just about right or better but it defeats the purpose of the c runtime library functions being installed, again, in almost every os on every hardware. say i write something in win32 that uses printf - when i wish to port the code to say raspberry pi that is under the arm architecture, i can still use the same printf coz the runtime is installed there. and almost everyone uses c/c++ so rest assured that the libraries are installed everywhere.