Versions Compared

Key

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

...

Mismatches between arguments and conversion specifiers may result in undefined behavior.

Code Block
bgColor#ffcccc
const char *error_msg = "Resource not available to user.";
int error_type = 3;
/* ... */
printf("Error (type %s): %d\n", error_type, error_msg);

...