Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
// 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