fork download
  1. #include <stdio.h>
  2.  
  3. struct hoge {
  4. int a[10];
  5. };
  6.  
  7. void func(hoge &h);
  8.  
  9. int main(){
  10. hoge h;
  11.  
  12. h.a[0] = 0;
  13. func(h);
  14. printf("%d\n", h.a[0]);
  15. }
  16.  
  17. void func(hoge &h){
  18. h.a[0] = 42;
  19. }
  20.  
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
42