fork download
  1. #include <iostream>
  2.  
  3. void f(unsigned char c) { std::cout << c << std::endl; }
  4.  
  5. int main()
  6. {
  7. f('a'); // здесь возможен ворнинг, но всем посрать
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
a