QUOTE(beberenne @ 23 Oct, 2006 - 10:13 PM)

Given in the header file Date.h for a class Date
const char *monthName( void ) const;
in the Date.cpp file do i write the code like this?]
Close... the return type is a char *... therefore you must keep the * near the char..
CODE
const char * Date::monthName(void) const
{
}