Created
November 17, 2016 08:40
-
-
Save remyroez/e8ae0a5445006988d53f323211b44697 to your computer and use it in GitHub Desktop.
戻り値がない場合の挙動
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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