|
Home
Site Map Useful Tools Graphing Calc Scientific Calculator |
Arrays in C++
void printReverse(int nums[], int len)
Description: This function takes an array nums and its length and prins the array in reverse oder..
double mean(int nums[], int len)
Description: This function calculates the arithmetic mean of the array nums.
int largest(int nums[], int len)
Description: This function returns the largest value of the array.
|