InterviewSolution
Saved Bookmarks
| 1. |
Write a C++ function to find the sum of diagonal elements from a Two-dimensional array of tipefloat. Use the array and its size as parameterwith float as its return type |
|
Answer» FLOAT diasum(float A[ ][ ],INT R,int C){ int i,J;float Dsum=0.0;for(i=0;i |
|