fork(1) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. std::cout << "'trol' = " << 'trol' << std::endl;
  6. std::cout << "L'trol' = " << L'trol' << std::endl;
  7. std::cout << "U'trol' = " << U'trol' << std::endl;
  8. std::cout << "u'trol' = " << u'trol' << std::endl;
  9.  
  10. std::cout << "'tr' = " << 'tr' << std::endl;
  11. std::cout << "L'tr' = " << L'tr' << std::endl;
  12. std::cout << "U'tr' = " << U'tr' << std::endl;
  13. std::cout << "u'tr' = " << u'tr' << std::endl;
  14.  
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
'trol' = 1953656684
L'trol' = 108
U'trol' = 108
u'trol' = 108
'tr' = 29810
L'tr' = 114
U'tr' = 114
u'tr' = 114