Why are C, C++ called platform dependent languages ? what does it mean?
Platform dependent language like C, C++?
Collapse
X
-
-
C and C++ are not per say platform dependent. There are several standards for the basic language features of C and C++. These basic language features in theory should be supported on any platform that has a standard compliant compiler. It is the use of libraries bound to a particular platform that make a C or C++ program platform dependent.. -
Originally posted by tyreldIt is the use of libraries bound to a particular platform that make a C or C++ program platform dependent..Comment
Comment