fork download
  1. #include <iostream>
  2.  
  3. int main( ){
  4.  
  5. char c1 = 'x', c2;
  6. int i1 = c1 , i2 = 'x';
  7.  
  8. c2 = i1;
  9.  
  10. std::cout << c1 << ' ' << i1 << ' ' << c2 <<'\n';
  11.  
  12. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
x 120 x