
模板代码:
#include <iostream>
#include <iomanip>
using namespace std;
int* getScore(int score[]) {
}
void print(int * start, int* end) {
}
void calAvg(int* begin,int* end){
}
int main()
{
int score[10];
return 0;
}
这题要求用指针,结果就给我整不会了
哪位大佬能说一说每个函数要传入的实参和返回的指针变量?