fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. unsigned char x;
  6. cin >> x;
  7. cout << x << " " << sizeof(x) << endl;
  8. }
Success #stdin #stdout 0s 15240KB
stdin
4
stdout
4 1