fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. struct X {
  6. int v;
  7. };
  8.  
  9. int main()
  10. {
  11. X X;
  12. X.v = 7;
  13. cout << "X.v:" << X.v << endl;
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
X.v:7