fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int arr[5];
  5. for(int i=0;i<5;i++){
  6. scanf("%d\n",&arr[i]);
  7. }
  8. printf("%d",arr[2]);
  9. printf("%d",arr[3]);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5288KB
stdin
0
1
2
3
4
stdout
23