April 02, 2005
    int main()
    {
        char    sz[10];

        char    ch1 =   sz[0];
        char    ch2 =   0[sz];    // << Invalid compiler error here

        return 0;
    }


September 11, 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;
>     }
>
>