X-1-6: There is an error in the following program. Give the error line number.
1. #include<iostream>
2. using namesspace std;
3. void totXz(float[], float[], int);
4. int maiin()
5. {
6. float X[] = {1.4, 7.13, 0.4, 0.15, 3.75};
7. float Y[5] = {1.25, 2.891, 3.14};
8. cout << "The elements of the new array: X-Z are:\n";
9. totxz (5,X,Y);
10.
11. return 0;
12. }
13. vold totxz (float a[], float b[], int k)
14. {
15. for (int i = 0; i < k; i++)
16. cout << "\t" << 5*a[i]-3*b[i] << "\n" << endl;
17. }