Versions Compared

Key

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

...

Code Block
bgColor#ccccff
int foo(int);

int main(void) {
    int c = foo(0);
    printf("%d\n", c);
    return 0;
}

int foo(int a) {
  return a;
}

Wiki Markup
For more information on function declarations see \[[DCL07-A. Include the appropriate type information in function declarators]\]

Non-Compliant Code Example (implicit return type)

...