This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Header file section | |
| // Do you actually need stdafx or was it auto appended by VS? | |
| //#include "stdafx.h" | |
| #include<iostream> | |
| #include<string> | |
| //using namespace std; | |
| //Funtion declaration | |
| float Average (int *scores,int number) ; | |
| void SortTestScores (int *scores,string *Names,int n) ; |