fork(3) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. // your code goes here
  5. int *arr={1,2,3,4};
  6. printf("%d", sizeof(arr)/sizeof(*arr));
  7. return 0;
  8. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1