Answers for "c++ global variable"

C++
4

c++ global variable

// a.cpp
int x = 5;

// b.cpp
extern int x; // allows b.cpp to access 'x' from a.cpp
Posted by: Guest on January-23-2021
0

c++ variable globale

#include <iostream>

int global = 3; // Une variable globale

void ChangeGlobal()
{
   global = 5; // Référence à la variable globale à l'intérieur d'une fonction
}

int main()
{
   std::cout << global << '\n'; // Référence à la variable globale dans une autre fonction
   ChangeGlobal();
   std::cout << global << '\n';
   return 0;
}
Posted by: Guest on December-24-2020
-2

cpp global variable

int g_x; // global variable g_x
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language