[quote="[WaffenSS]Cethin":315c0][code:315c0]error C2106: '=' : left operand must be l-value[/code:315c0]
Someone tell me what that means, it's driving me insane. How do I fix it[/quote:315c0]
You ve got the wrong thing on the left side of the = sign ...
I found this on about.com ...
[code:315c0]
int x;
x = 5; // This is fine, 5 is an rvalue, x can be an lvalue.
5 = x; // This is illegal. A literal constant such as 5 is not
// addressable. It cannot be a lvalue.
the game_dice1[count] = set_dice1[count]; is one of the problems.
Basically what the error means, from my understanding, is that game_dice1 is not a valid variable to accept set_dice1 even when they both have the same declaration within my function.
here ya go ... this code will first set game_dice1 to set_dice1 then print game_dice1 .... this might help you out some...
[code:36537]
#include <iostream.h>
int main()
{
int i;
int j;
char game_dice1[5][7] = {"", "", "", "", ""};
char set_dice1[5][7] = {"///////",
"/ /",
"/ * /",
"/ /",
"///////"};
// loop through the rows
for (j = 0; j < 5; j++)
{
// loop through the cols
for (i = 0; i < 7; i++)
{
// set row and col of game_dice to set_dice
game_dice1[j][i] = set_dice1[j][i];
}
}
for (j = 0; j < 5; j++)
{
for (i = 0; i < 7; i++)
{
cout << game_dice1[j][i];
}
cout << endl;
}
return 0;
}