Forum: C++ Nov 23rd, 2006 |
| Replies: 2 Views: 2,730 Thanks, :cheesy:
thought that with statics it was permissable though.
cheers,
denn0069 |
Forum: C++ Nov 22nd, 2006 |
| Replies: 2 Views: 2,730 I have the following code:
class date
{
private:
unsigned int nDay,nMonth,nYear;
static unsigned int nMonthArr[12] = {31,28,31,30,31,30,31,31,30,31,30,31}; //LINE 36
...
Upon compilation I... |