✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний код?int main() { int arr[] = {10, 20, 30, 40, 50}; int *ptr=&arr[3]; printf("%d", *(ptr - 2)); return 0;}