Structures functionWell, you must remember that [code]main()[/code] cannot be type [code]void[/code] it must always be ...
rectangleTry this: [code] #include <iostream> int main{ std::cout << ("Enter side 1: ") << std:endl; std::cin...
Referencing a 2D array in order to sort stringsAlso, you have duplicates declarations of [code] char BubbleSort (char Names [], int NumElements)[/c...
Referencing a 2D array in order to sort stringsFor starters [code]main()[/code] must always be declared as [code]int main {}[/code] never as type [...
Problem reading from fileUsing [code]std::[/code] instead of [code]using namespace std;[/code] creates less overhead. In oth...