fork download
  1. #include <iostream>
  2. #include <stdint.h>
  3. #include <stdlib.h>
  4. using namespace std;
  5.  
  6. int main() {
  7. // your code goes here
  8. // int8_t a = 120;
  9. // int8_t b = 120;
  10. // int8_t c = 120;
  11. // cout << int(a) << "\n";
  12. // int8_t avg = (a + b + c) / 3;
  13. // // uint8_t b = 202;
  14. // cout << avg;
  15. cout << sizeof(int);
  16. return 0;
  17. }
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
4