Skip to content

Instantly share code, notes, and snippets.

@remyroez
Created November 17, 2016 08:40
Show Gist options
  • Save remyroez/e8ae0a5445006988d53f323211b44697 to your computer and use it in GitHub Desktop.
Save remyroez/e8ae0a5445006988d53f323211b44697 to your computer and use it in GitHub Desktop.
戻り値がない場合の挙動
#include <iostream>
int foo() { return 123; }
int bar() { foo(); }
int main()
{
std::cout << bar() << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment