Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C++1y (C++14) の main 関数に対して次のことを実行できますか?
auto main() { // ... }
intでは、明示的に使用する必要がない場合でも、戻り値の型は自動的に になりreturn 0;ますか?
int
return 0;