source code of c/c++ functions

前端 未结 14 2178
抹茶落季
抹茶落季 2020-11-28 04:33

I wanted to have a look at the implementation of different C/C++ functions (like strcpy, stcmp, strstr). This will help me in knowing good coding practices in c/c++. Could y

相关标签:
14条回答
  • 2020-11-28 05:36

    Many C standard library functions have source code listings & discussions in The C Programming Language by Kernighan & Ritchie. The discussions are a helpful way of learning more about the specifics of the C language & how functions in the standard library work under the hood.

    0 讨论(0)
  • 2020-11-28 05:36

    For your purposes, this book may be helpful: Mastering Algorithms with C

    0 讨论(0)
提交回复
热议问题