Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: let there be const

...

Code Block
bgColor#ffcccc
long long a = 1;
const char msg[] = "Default message";
/* ... */
printf("%d %s", a, msg);

...

Code Block
bgColor#ccccff
long long a = 1;
const char msg[] = "Default message";
/* ... */
printf("%lld %s", a, msg);

...