C/C++
cppstlib.asc
Associated article: The C++ Standard Library
Tags: C/C++ Design
_THE C++ STANDARD LIBRARY_
by Michael Vilot
Listing One
#include <string.h> // C library functions
#include <stdio.h> // are in the global namespace
int main()
{
char h[] = "hello, ";
char w[] = "worldn";
char ...


