运行 ❯
获取您
自己的
网站
×
更换方向
更换主题,深色/浅色
进入 Spaces
#include <iostream> using namespace std; // Global variable x int x = 5; void myFunction() { // Local variable with the same name as the global variable (x) int x = 22; cout << x << "\n"; // Refers to the local variable x } int main() { myFunction(); cout << x; // Refers to the global variable x return 0; }
22
5