void main ()
{
    char[] str = "abc";
    // Error: cannot implicitly convert expression ("abc")
    // of type string to char[]
}

I thought there is no harm in that?

Reply via email to