I'm getting a wierd error I compile this code.
Code:
include "stdafx.h"

using namespace System;

struct phone
{
	int AreaCode;
	int Exchange;
	int Number;
};


int main(array<System::String ^> ^args)
{
	phone Phone2 = {999,999,0099};       //error occurs here

         phone Phone1 = {999,999,9999};       //works fine

    return 0;
}
The error message I get is error C2041: illegal digit '9' for base '8'. Is my complier messed up or something? Thanks.