I am a little surprised by the following.
Example 1:
char s[100] = "abcd"; // declare and initialize - WORKS
Example 2:
char s[100]; // declare
s = "hello"; // initalize - DOESN'T WORK ('lvalue required' error)
I'm wondering why the second approach doesn't work. It seems natural that it should (it works with other data types)? Could someone explain me the logic behind this?
