c++ - C bug: Incorrect handling of subscript operator
int main()
{
char sz[10];
char ch1 = sz[0];
char ch2 = 0[sz]; // << Invalid compiler error here
return 0;
}
Apr 01 2005
Any progress on this?
"Matthew" <admin stlsoft.dot.dot.dot.dot.org> wrote in message
news:d2lfui$2htn$1 digitaldaemon.com...
int main()
{
char sz[10];
char ch1 = sz[0];
char ch2 = 0[sz]; // << Invalid compiler error here
return 0;
}
Sep 11 2005








"Matthew" <matthew hat.stlsoft.dot.org>