fork download
  1. #include <iostream>
  2. #include <stdlib.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. int* arr = (int*)malloc(3 * 4);
  7. cout << sizeof(arr);
  8. }
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
8