Src="/absolute/or/relative/path/to/image.file"
Answer:
printArray(inventory, n);
Explanation:
The question doesn't specify in which language this has to be done, here's a generic call then... so if it's aimed at a specific language, some minor adjustments might be needed to respect the proper syntax/structure of that specific language.
Given:
printArray: function name, using 2 parameters.
inventory: array of ints
n : integer, number of items in array inventory
The call to the function would be:
printArray(inventory, n);