fork(1) download
  1. #include <iostream>
  2.  
  3. #include <stdio.h>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. cout << sizeof( char ) << endl;
  9. char t = 512;
  10.  
  11. printf( "%x", t );
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
1
0