#include #include using namespace std; #define CAPACITY 10 typedef struct musicEntry { string artist; string songTitle; }music; int findSong(music* songArray, int &size, music song) { // Complete this function return -1; } music* addSong(music* songArray, int &size, music newEntry) { // Complete this function return NULL; } void deleteSong(music* songArray, int &size, music entryToDelete ) { // Complete this function } void printAll(music* songArray, int &size){ // Complete this function } int main(){ music* songArray = new music[CAPACITY]; // Complete this function return 0; // Return code for success }