fork(3) download
  1. #include <iostream>
  2. int main()
  3. {
  4. std::cout << sizeof(0LL) << std::endl;
  5. std::cout << sizeof(0);
  6. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
8
4