In C++ program, what it is the output of the given block of code?
float ary[] = {3.2, 5.3, 6, 13.1, 19.0};
cout<<(*(ary + 3));1
13.1
2
6.2
3
13
4
6
In C++ program, what it is the output of the given block of code?
float ary[] = {3.2, 5.3, 6, 13.1, 19.0};
cout<<(*(ary + 3));