Alliedassault           
FAQ Calendar
Go Back   Alliedassault > Lounge > Offtopic
Reload this Page C++ Error Message
Offtopic Any topics not related to the games we cover. Doesn't mean this is a Spam-fest. Profanity is allowed, enter at your own risk.

Reply
 
Thread Tools Display Modes
C++ Error Message
Old
  (#1)
[WaffenSS]Cethin is Offline
Senior Member
 
Posts: 163
Join Date: Apr 2002
Location: Connecticut
 Send a message via ICQ to [WaffenSS]Cethin Send a message via AIM to [WaffenSS]Cethin  
Default C++ Error Message - 10-31-2002, 03:19 PM

[code:61fba]error C2106: '=' : left operand must be l-value[/code:61fba]

Someone tell me what that means, it's driving me insane. How do I fix it
  
Reply With Quote
Old
  (#2)
Ragewar16 is Offline
Member
 
Posts: 95
Join Date: Mar 2002
Location: Places, USA
  Send a message via MSN to Ragewar16  
Default 10-31-2002, 03:57 PM

need more info. What are you trying to code? Can you post the code?
  
Reply With Quote
Old
  (#3)
KTOG is Offline
Captain
 
KTOG's Avatar
 
Posts: 5,824
Join Date: Mar 2002
Location: Robertplantsville
   
Default 10-31-2002, 04:17 PM

maybe you have something like this

a + b = c ;

or you always could be forgetting a semi colin?
  
Reply With Quote
Old
  (#4)
Guest
 
Posts: n/a
   
Default 10-31-2002, 04:19 PM

cethin = noob
  
Reply With Quote
Re: C++ Error Message
Old
  (#5)
Judas is Offline
Senior Member
 
Posts: 8,792
Join Date: Apr 2002
Location: Hans-AlbinVonReitzenstein
 Send a message via ICQ to Judas Send a message via AIM to Judas Send a message via MSN to Judas  
Default Re: C++ Error Message - 10-31-2002, 04:24 PM

[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.

[/code:315c0]
  
Reply With Quote
Old
  (#6)
[WaffenSS]Cethin is Offline
Senior Member
 
Posts: 163
Join Date: Apr 2002
Location: Connecticut
 Send a message via ICQ to [WaffenSS]Cethin Send a message via AIM to [WaffenSS]Cethin  
Default 10-31-2002, 05:52 PM

Sec I'll post the code that I'm trying to do

[code:a272b]for (count = 0; count < 5; count++)
game_dice1[count] = set_dice1[count];
[/code:a272b]

game_dice1 & set_dice1 is declared as:
[code:a272b]char game_dice1[5][10];
char set_dice1[5][10] = {"///////",
"/ /",
"/ * /",
"/ /",
"///////",
};[/code:a272b]

and of course count is:
[code:a272b]int count;[/code:a272b]
  
Reply With Quote
Old
  (#7)
Judas is Offline
Senior Member
 
Posts: 8,792
Join Date: Apr 2002
Location: Hans-AlbinVonReitzenstein
 Send a message via ICQ to Judas Send a message via AIM to Judas Send a message via MSN to Judas  
Default 10-31-2002, 06:18 PM

post the problem
  
Reply With Quote
Old
  (#8)
[WaffenSS]Cethin is Offline
Senior Member
 
Posts: 163
Join Date: Apr 2002
Location: Connecticut
 Send a message via ICQ to [WaffenSS]Cethin Send a message via AIM to [WaffenSS]Cethin  
Default 10-31-2002, 06:22 PM

I just did Judas

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.

There's your problem Judas.
  
Reply With Quote
Old
  (#9)
Judas is Offline
Senior Member
 
Posts: 8,792
Join Date: Apr 2002
Location: Hans-AlbinVonReitzenstein
 Send a message via ICQ to Judas Send a message via AIM to Judas Send a message via MSN to Judas  
Default 10-31-2002, 06:51 PM

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;
}

[/code:36537]
  
Reply With Quote
Old
  (#10)
[WaffenSS]Cethin is Offline
Senior Member
 
Posts: 163
Join Date: Apr 2002
Location: Connecticut
 Send a message via ICQ to [WaffenSS]Cethin Send a message via AIM to [WaffenSS]Cethin  
Default 10-31-2002, 06:54 PM

Hmm...hold on I have an idea
  
Reply With Quote
Old
  (#11)
Pyro is Offline
Chief of Staff General
 
Pyro's Avatar
 
Posts: 20,691
Join Date: Apr 2002
Location: Brampton Ontario Canada
  Send a message via AIM to Pyro Send a message via MSN to Pyro  
Default 10-31-2002, 09:19 PM

buy C++ for dummies.


  
Reply With Quote
Old
  (#12)
ThinIce is Offline
Senior Member
 
Posts: 521
Join Date: May 2002
Location: Bathroom
 Send a message via ICQ to ThinIce Send a message via AIM to ThinIce  
Default 10-31-2002, 11:45 PM

I'd consider rewriting the whole thing into a class. OOP is powerfull stuff cethin.
  
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.12 by ScriptzBin
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBulletin Skin developed by: vBStyles.com
© 1998 - 2007 by Rudedog Productions | All trademarks used are properties of their respective owners. All rights reserved.