User profile: ostar2

User info
User name:ostar2
History
Joined:
Number of posts:118
Latest posts:

Structures function
Well, you must remember that [code]main()[/code] cannot be type [code]void[/code] it must always be ...

rectangle
Try this: [code] #include <iostream> int main{ std::cout << ("Enter side 1: ") << std:endl; std::cin...

Referencing a 2D array in order to sort strings
Also, you have duplicates declarations of [code] char BubbleSort (char Names [], int NumElements)[/c...

Referencing a 2D array in order to sort strings
For starters [code]main()[/code] must always be declared as [code]int main {}[/code] never as type [...

Problem reading from file
Using [code]std::[/code] instead of [code]using namespace std;[/code] creates less overhead. In oth...