Rum-Time Library vs Standard Library

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Carmen Sei

    #1

    Rum-Time Library vs Standard Library

    what are the difference between

    Rum-Time Library vs Standard Library

    http://msdn2.microsoft.com/en-us/lib...7y(VS.80).aspx
    http://msdn2.microsoft.com/en-us/lib...w6(VS.80).aspx

  • Rahul

    #2
    Re: Rum-Time Library vs Standard Library

    On Mar 5, 5:29 am, Carmen Sei <fatwallet...@y ahoo.comwrote:
    what are the difference between
    >
    Rum-Time Library vs Standard Library
    >
    http://msdn2.microsoft.com/en-us/lib...w6(VS.80).aspx
    Many vendors implement c++ standard library as a runtime library... so
    that they get linked dynamically into the program, it makes sure that
    the size of the executable is less...

    Moreover, if the vendor provides a next version of the standard
    library, the developer wouldn't need to re-link his program, instead
    can directly run the executable...th e linking in this case would be
    taken care by dynamic linker/loader...

    Comment

    Working...