...
Code Block | ||
---|---|---|
| ||
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)
...