fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. typedef struct{
  5. char name[10];
  6. } type_t;
  7.  
  8. int main() {
  9. type_t a = {"hihi"};
  10.  
  11. type_t b;
  12. b = a;
  13.  
  14. a.name[0] = 'a';
  15.  
  16. cout<<a.name<<endl;
  17. cout<<b.name<<endl;
  18.  
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5476KB
stdin
Standard input is empty
stdout
aihi
hihi