Answer:
result in an error.
Step-by-step explanation:
The statement cout << sales[0,3] + sales[1,3]; corresponds to a syntax error.
In order to refer to a certain element in a double dimension array in C++, the correct syntax should be :
cout<<a[0][3]+a[1][3];