// ***************************************************************** // Author: Zhixiang Chen // Class: CSCI/CMPE 1170, Spring 2009 // Lab 19: Array parametrs to functions // Date: January, 2009 // Comment: The code here is meant to be revised. // ***************************************************************** #include #include using namespace std; #ifndef LAB_19_HEAD_H #define LAB_19_HEAD_H /**************************************************************** This function gets letters frequencies from the input file. You need to implement this function. ****************************************************************/ void getStats(int stats[ ], ifstream & inFile, const int size) { //your code is here } /**************************************************************** This function displays the stats inform in some good format. You need to implement this function. ****************************************************************/ void showStats(const int stats[ ], const int size) { //your code is here } #endif