Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

STR36-EX2: If the string being initialized might change in the future, one may explicitly specify an array bounds. This is particularly important if the array might hold strings longer than the initialization string.

Code Block
bgColor#ccffff#ccccff
const char s[10] = "abc";
strcpy(s[43], "def");

Risk Assessment

...