fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. struct node{
  4.  
  5. int x =5;
  6. };
  7.  
  8.  
  9. int main() {
  10.  
  11. node n[3];
  12.  
  13.  
  14. for(int i=0;i<3;i++)
  15. {
  16. cout<<n[i].x;
  17. }
  18.  
  19. // your code goes here
  20. return 0;
  21. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
555