View Single Post
Old 10-16-2004, 10:03 AM   #17 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
Quote:
#include <iostream>
#include <string>
using namespace std;
#define RACERS 3
Dont do #define like that.
Since you are using namespace std, we are assuming you are truly programming in standard C++. Don't mix C with C++.
Code this: const unsigned racers = 3;
Also no using of cin.getline() when using std::string. Use std::getline().
__________________
Valmont is offline   Reply With Quote