C ++での私のコードは次のとおりです。
#include <iostream>
using namespace std;
int tuna = 20; // this is global
//main function
int main()
{
int tuna = 69; // this is local
cout << tuna << endl;
}
//fish function
int fish()
{
cout << tuna << endl; // this should print global?
}
関数を実行してもコンソールに出力されfish
ません。理由はわかりませんし、私には意味がありません。