C/C++
cprog597.txt
Associated article: Borland's C++Builder
Tags: C/C++
Published source code accompanying Al Stevens column in which he examines Borland's C++Builder. Also see CPROG597.ZIP
_C Programming Column_
by Al Stevens
Example 1:
(a)
using namespace Sysutils;
(b)
#include <string>
using namespace std;
Listing One
// ---- date.h
#ifndef DATE_H
#define DATE_H
#include <cstring.h>
class BadDate { };
class CalendarDate {
int ...


