C. people have to buy entire albums, which can get expensive.
        
                    
             
        
        
        
The correct answer is letter c. exhaust manifolds. Most V-type engines use two exhaust manifolds, one attached to each cylinder head. An exhaust manifold in automative engineering refers to the collection of the exhaust gases from different cylinders into another single pipe.
        
             
        
        
        
Answer:
In C++:
#include <cstdlib>  
#include <ctime>  
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
void printarray(int array []){
for(int i=0; i<100; i++){         cout << array[i] << " ";    }
}
void sortarray(int array []){
sort(array, array + 100);
    printarray(array);
}
int main() {  
    int array[100];
    srand((unsigned)time(0));  
    for(int i=0; i<100; i++){  array[i] = (rand()%99);     }
    printarray(array);
    cout<<endl;
    sortarray(array);
    return 0;
}
Explanation:
<em>See attachment for program source file where comments are used for explanation purpose</em>