fork download
  1. #include <iostream>
  2. #include <stdio.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. unsigned long test = 145;
  8.  
  9. printf("%ds", sizeof(test));
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
4s