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.
次のコードがコンパイルされないのはなぜですか? 基本的に、次のコードで何が正しくないのですか? 値を割り当てずに同じ変数を 2 回宣言すると問題になると思います。
#include <iostream> using namespace std; int foo() { return 1; } int main() { int a; int a; cout << foo() << endl; return 0;}