C/C++
cprog298.txt
Associated article: A C++ Standard At Last
Tags: C/C++ Tools
Published source-code examples accompanying the article by Al Stevens in which he examines C++ ANSI/ISO Standard.
C Programming Column
by Al Stevens
Listing One
#include <iostream.h>
int main()
{
int* ip = 0; // null pointer
// ...
int& ir = *ip; // refers to nonexisting int
cout << ir; // error! dereferences nonexisting int
return 0;
}
Listing Two
#include <...


