foind th output c++

C++
// Assume that integers take 4 bytes. 
#include<iostream> 
  
using namespace std;    
  
class Test 
{ 
  static int i; 
  int j; 
}; 
  
int Test::i; 
  
int main() 
{ 
    cout << Test::i; 
    return 0; 
} 

Source

Also in C++: