Thank you both of you. Im glad their is a place with people so helpful. After all this time tinkering with this program its finally working. Thanks to you.
Saith i ended up using your idea for the end of my program as it worked out.
Nandomo thank you for getting me back on track in the first place. I was getting so upset trying to work out the errors i was getting that i was making weak mistakes. Both of you were incredibly helpful. Here is what i believe to be the finished program.
include <iostream>
using namespace std;
void buildSquare(int, char);
int main()
{
int side, length;
char symbol;
cout << " Please enter symbol to fill square" << endl;
cin >> symbol;
cout << " Please enter length of sides "<< endl;
cin >> length;
buildSquare( length, symbol);
return 0;
}
void buildSquare( int length, char symbol){
for (int side = 0; side < length; side++)
{
for( int side2 = 0; side2 < length; side2++){
cout << symbol;
}
cout << endl;
}
}