They are linked to your program either as static or as
dhttp://en.wikipedia.org/wiki/Linker_%28computing%29ynamic library. If
you use MS Visual Studio refer here
<http://msdn.microsoft.com/en-us/library/abx4dbyh%28v=vs.80%29.aspx> to
see exact library names for various compilation options. If you use GCC
than is't either libc.a+libc.so [if you link it dynamically] or
libc_nonshared.a [if you link it statically]. In both cases C standard
library is linked by default to every program so you don't need to
bother with specifying it every time in your build configuration.
For more information on linking refer to the corresponding wiki article
<http://en.wikipedia.org/wiki/Linker_%28computing%29>.
On 03.01.2011 22:40, Shoubhik wrote:
Thanks Reiten . Right, I get it.
But, but where exactly are those "Implementations of functions"
stored/accessed from. ?
--
You received this message because you are subscribed to the Google
Groups "google-codejam" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-code?hl=en.
--
You received this message because you are subscribed to the Google Groups
"google-codejam" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-code?hl=en.