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.
VC++で作業を始めたばかりです。.NET 4を使用していますが、グローバル変数をどこで宣言できるかわかりません。
これが自動的に作成された簡単なコードです。変数はどこで宣言できますか?
すべての変数を別の.haに入れるのは良い考えですか?
このコードで試すことができます
int g_nX; // global variable void Main() { int nY; // local variable nY // global vars can be seen everywhere in program // so we can change their values here g_nX = 5; } // nY is destroyed here