Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~92 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for eng.M

[COLOR="Red"]Help me .. I can not understand this question.. What does the following function do?[/COLOR] void insert(int a[], int& n, int maxsize, int index, int key) { if (index < 0 || index > maxsize-1) { ; } for (int i=n; i>index; i--) { a[i] = a[i-1]; } a[index] = …

Member Avatar for eng.M
-1
92