Skip to content

Instantly share code, notes, and snippets.

@kjk
Created December 22, 2019 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjk/b5749da97b016930b2c48a53346d8289 to your computer and use it in GitHub Desktop.
Save kjk/b5749da97b016930b2c48a53346d8289 to your computer and use it in GitHub Desktop.
int main()
{
// error: foo is called, but has not yet been declared
foo(2);
}
// this definition is not known in main
void foo(int x)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment