where can i find implementation code of function scanf()?
Depends on the compiler and I have no idea where it is for any compiler.
Tim S
Sorry,
I'm using MinGW GCC Compiler,so where can i find it?
Quote from: Kane.zZ on March 15, 2007, 07:41:08 PM
I'm using MinGW GCC Compiler,so where can i find it?
You can't; MinGW links the scanf() function from the MSVC runtime (msvcrt*.dll), for which the source is not available.
QuoteYou can't; MinGW links the scanf() function from the MSVC runtime (msvcrt*.dll), for which the source is not available.
You can't. But FYI&F: there are sources for some of microsoft crt routines in MSVCDIR\Vc7\crt\ or so (if you have msvc installed and "install crt sources" option enabled)
Interesting thing is "strlen.asm" - it works fine, but i couldn't understand it (may be because of mental forces degradation due to my university studies).
After that thing I strongly respect microsoft guys.