运行 ❯
建立您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> // Global variable x int x = 5; void myFunction() { // We can use x here printf("%d\n", x); } int main() { myFunction(); // We can also use x here printf("%d\n", x); return 0; }
5
5