Cpp Standard Library 简明教程
The C++ Standard Library Tutorial
C 是一种中级编程语言,由 Bjarne Stroustrup 于 1979 年在贝尔实验室开始开发。C 可在多种平台上运行,如 Windows、Mac OS 和各种版本的 UNIX。C 标准库是由核心 C 语言编写的一系列类、函数、宏、常量等。根据不同的编译器实现,有很多必需的头文件,具体取决于不同的编译器实现。此头文件列表包括包含 the C Standard Library 内容的头文件、一种 C specific headers 新列表以及 the C Standard Template Library (STL) 的其他重要头文件。
C is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs. C runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. The C Standard Library is a collection of classes, functions, macros, constants etc which have been written in the core C language. There is a big list of required header files which can vary depending on different compiler implementations. This header list includes the headers containing the content from the C Standard Library, a list of new C specific headers, and other important headers for the C Standard Template Library (STL).
Audience
C 标准库是 C 程序员的参考指南,可帮助他们完成与系统编程相关的项目中的所有步骤。所有 C 函数的解释都容易理解,且可以在 C 项目中轻松使用。
The C Standard Library is a reference for C programmer to help them at every steps of their projects related to system programming. All the C functions have been explained in easy to understand way and they can be used easily in your C projects.