How do we indicate a char Array to be a String VARIABLE?

What are the lengths of strings that can be assigned to char arr[ARR_LEN+1]?


How do we initialize a String Variable?

What if: the initializer is too short to fill the String Variable’s length in the brackets []?

What if: the initializer is longer than the String Variable’s length?

What if: we omit the length of the array when we initialize a string?


Common Pitfall: What’s the differences between date[] & *date?

Common Pitfall: Using Uninitialized Pointer Variable as a string.