fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int arr[3];
  5. printf("Enter the first element: \n");
  6. scanf("%d",&arr[0]);
  7. printf("Enter the second element: \n");
  8. scanf("%d",&arr[1]);
  9. printf("Enter the third element: \n");
  10. scanf("%d",&arr[2]);
  11.  
  12. printf("%d",arr[1]);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5288KB
stdin
0
1
2
stdout
Enter the first element: 
Enter the second element: 
Enter the third element: 
1