SYNTAX:
int main()
{ float M[4][4],Cond3,Ch[7],Remain,X[6];
M[3][3]=4;
M[2][2]=6;
X[4]=M[3][3]+M[2][2];
Ch[6]='B';
cout<<Cond3<<endl<<endl;
Remain=X[4]%4;
cout<<Remain;
cout<<endl<<endl;
cout<<endl;
return 0;
}
...............thanks in advanced................
cout<<Cond3<<endl<<endl;
Probably because you're printing out something that is not initialized.
I had no trouble debugging that. What debugger are you trying to use?
Remain=X[4]%4
i get error..which it state must be enum type