Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: format clean-up

...

In this compliant solution, extern is the storage-class specifier and int is the type specifier; {{ max(int a, int b)}} is the function declarator; and {{{ return a > b ? a : b; }}}
the block within {} is the function body.

Code Block
bgColor#ccccff
extern int max(int a, int b)
{
  return a > b ? a : b;
}

...