fork(1) download
  1. #include <stdio.h>
  2.  
  3. void update_array(int *arr, int size) {
  4. arr[0] = 14;
  5. arr[1] = 88;
  6. }
  7.  
  8. int main(void) {
  9. int arr[2];
  10.  
  11. update_array(arr, 2);
  12. printf("%d%d", arr[0], arr[1]);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1488