You declare the first arrAscendingOrder and showArrPtr paremeter as an array of pointers to double ( Why?! ). However the only array (accessed via score pointer) in your program is an ordinar array of doubles. You are trying to pass it in these functions.
See your showArray correct parameter declaration as array of doubles.
That's all.
Yet another defect: you don't check user input. It's extremely bad practice. Avoid it.
if (!(cin >> numscores) || numscores <= 0) {
// not a number or incorrect value...
}
Use code tag with the language specifier for your snippets:
[code=cplusplus] source
[/code]
Mark wrong statements in your snippets. As usually nobody want to copy/paste all texts in IDE to reproduce your syntax errors.