fork(1) download
  1. typedef struct Mystruct
  2. {
  3. int val1;
  4. int val2;
  5. } Mystruct;
  6.  
  7. int main()
  8. {
  9. Mystruct a = {1, 2};
  10. a = {3,4};
  11.  
  12. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty