| 43 | }; |
| 44 | |
| 45 | void Array :: Display () |
| 46 | { |
| 47 | for (int i=0; i<length;i++) |
| 48 | cout<<A[i]<<" "; |
| 49 | cout<<endl; |
| 50 | } |
| 51 | |
| 52 | // Now to access element from array class we will use Scope Resolution (::) followed by Class name |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected