fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int arr[3]={5,6,7};
  5. arr[1] = 50;
  6. printf("%d",arr[1]);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
50