...
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 | ||
---|---|---|
| ||
extern int max(int a, int b) { return a > b ? a : b; } |
...