The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
76 views

unexpected behavior of C operands evaluation order

So just for fun, I have this code snippet: #include <stdio.h> main() { int i; int a; i = 17; //scanf("%d", &i); a = (i+=5) * (i-=3); printf("a is %d, i is %d\n", a, i); } In C ...
0
votes
1answer
300 views

Nasm Error: invalid combination of opcode and operands

In my quest to learn NASM, I am trying to create a really simple program that does a division and outputs the result. By the books, everything should run fine. I'm dividing 15 by 3, and it should ...
0
votes
1answer
140 views

C++ error — No match for operator =

class RLE_v1 { struct header { char sig[4]; int fileSize; unsigned char fileNameLength; std::string fileName; } m_Header; RLE<char> m_Data; ...
0
votes
4answers
179 views

I keep getting this error: invalid operands to binary ^ (have 'double' and 'double')

Whenever I run the code my lines 52 and 61 keep giving me the same error message. #include<stdio.h> #include<math.h> double getinput(void); double calcwindchillold(double v, double t); ...
1
vote
3answers
78 views

I keep getting a error:“no operator >> matches thees operands” on variables that are int and bool. In the >> operator overload

class user { private: std::string first_name; std::string middle_name; std::string last_name; int ID; static int next_id; public: static int next_user_id() { ...
-1
votes
1answer
395 views

IntelliSense: no operator “+” matches these operands

Hi there, I am new to C++ and I got this error. IntelliSense: no operator "+" matches these operands The problematic line of code is: cout << i << "\t" << temp->VehicleNo + "\n"; ...
0
votes
2answers
196 views

Javascript: Comparing SINGLE Value Against MULTIPLE Values with OR Operands [duplicate]

Possible Duplicate: Check variable equality against a list of values Javascript if statement with multiple permissible conditions I must click the same 21 of 253 items (li) in a dropdown ...
2
votes
0answers
96 views

What counts as an operator and operand in PHP when calculating Halstead complexity?

I have this code that I want to use for calculating the Halstead complexity: <?php $words = explode("\n", file_get_contents('http://www.puzzlers.org/pub/wordlists/unixdict.txt')); foreach ($words ...
1
vote
6answers
190 views

OR Operand in C# for Strings

Is there no OR operand in C# for strings? I'm looking at the Microsoft C# operands page - and nothing on any sort of OR for strings. I've got an if statement I am trying to write: if ...
1
vote
2answers
264 views

The left operand of '==' is a garbage value

I am getting this error when I analize my ios project The left operand of '==' is a garbage value this is what the code looks like where its occurring.. This method is used to sort the array I have ...
-1
votes
1answer
148 views

How do I parse an expression to delineate operators from operand for evaluation and and arrive at a result? [closed]

How can I parse this: "23+23+566/*" to be able to stack the numbers in an array, separate the operators and manipulate the numbers using the operators? I don't know how to be any clearer than this? ...
0
votes
0answers
67 views

TypeError: unsupported operand type(s) for -: 'str' and 'str' line 6, in <module> subResult = totNum - n3

When I try to execute the code I get the following error: TypeError: unsupported operand type(s) for -: 'str' and 'str' line 6, in subResult = totNum - n3 myName = raw_input ("Please enter your ...
0
votes
2answers
214 views

Mixed numerals class operand overloading C++

So I'm writing a mixed numerals class for my OO class. We need to overload every comparison and boolean operand (among other things) but I'm having trouble with how to think about the '<' and '>' ...
1
vote
2answers
1k views

C++ Invalid operands to binary

I'm a beginner to C++ and I'm having a problem with this code, which is supposed to display the scores during the Superbowl final: #include <iostream> enum POINTS { EXTRA_POINT = 1, SAFETY = ...
1
vote
3answers
503 views

Operand ' ==' cannot be applied to operands of type (struct)

public class Human { public setGender Gender { get; set; } public void setHeight(Human Person) { if (Person.Gender == setGender.Male) // <-- This is where the error is. ...
-1
votes
3answers
56 views

php synatax what do these do? '^' and '|'

IN php, how do the following operands work? ^ | e.g. $a = 11; $b = 7; echo $a ^ $b; outputs 12 and $a = 11; $b = 7; echo $a | $b; outputs 15 Im not sure why in each case. Can ...
0
votes
0answers
187 views

invalid operands to binary * after passing variables xcode

I've figured out how to pass variables between views but I am having problems doing calculations after they have been passed. It is giving me an invalid operands to binary * when I compile in the ...
0
votes
3answers
1k views

convert bool to int?

I have this code, and I can't see why I cannot use the operator || in this example. "Operator '||' cannot be applied to operands of type 'bool' and 'int'" Am I missing something? where is this ...
1
vote
1answer
2k views

No operator “=” matches these operands - Iterators from the Standard Template Library

Okay, I'm working on a project for school, and we need to have a linked list of a class within another class (a linked list of the class "task" inside a class called "objectives"), so for this i'm ...
4
votes
1answer
1k views

Why does “equalsIgnoreCase” work in this case, and “equals” does not?

I am building a calculator applet, and on a whim was able to solve a problem with its' CE button.For some reason .equalsIgnoreCase seems to handle the parsing of Strings from an array with these ...
0
votes
2answers
103 views

Proper arguments as const or operands

Do you feel it is important to strictly use const every time the value won't be changed or pass arguments as pointers only when the data will be modified? I'd like to do things right but if a struct ...
4
votes
2answers
6k views

How to solve && operands to logical scalar

After I run the code in matlab, I encounter this error and unsure how to solve it. How can I solve this problem. Warning: Operands to the || and && operators must be convertible to ...
3
votes
5answers
191 views

why choose one's complement when writing to a register

What are the benefits of, for example writing the first statement vs second statement: First statement: ANCON1 = ~0x0C; Second statement: ANCON1 = 0xF3; I'm seeing the second as a clear choice ...
3
votes
1answer
214 views

MATLAB logical operators: && vs &

If I want to ensure that an if statement only executes if BOTH of two conditions are true, should I be using & or && between the clauses of the statement? For example, should I use if a ...
1
vote
3answers
8k views

Invalid Operands to binary / (have 'int *' and 'int')?

Every time I try this: long crypt(int *integer) { printf("Enter five digit integer:\n"); scanf("%i",integer); int digit1=integer/10000; int digit2=(integer%10000)/1000; int ...
0
votes
2answers
228 views

Address of a class member function

I have a class called CSum which contains a static method who's identifier is: static double fileProc(string myFile); In my main function I would simply call it by CSum::fileproc("foo.txt") ...
4
votes
2answers
2k views

What is this operand (*= star-equals) in SQL server 2000?

I have a query that I pulled from ms sql 2000 and plugged into a MySql query. It did not work, MySql would choke on the *= operator. In this example I have two varchar columns called person_name. ...
1
vote
1answer
2k views

Pointers, Invalid Operands to Binary, and Noobs

[Edit: Rectangle definition added at bottom.] [Edit2: XYPoint interface added at bottom.] I'm working on a method that checks if two rectangles overlap. (Yeah, I'm in Kochan's Programming in ...
2
votes
3answers
760 views

Terms used for addressing modes. [intel 8085]

In the documentation of a processor I am working on it says : Operand addressing modes available are implied, register, immediate, direct and register indirect (using the BC, DE and HL ...
7
votes
3answers
262 views

Help with mathematic operands in class (c#)

public class Racional<T> { private T nominator; private T denominator; public T Nominator { get { return nominator; } set { nominator = value; } } public ...
1
vote
1answer
2k views

Invalid combination of opcode and operands

SEGMENT .data print db "%d %d %d %d This is a test of printf", 10, 0 rowm dw 160 ;row multiplier iterations db 80 ;number of columns to set SEGMENT ...
2
votes
2answers
906 views

x86 assembly memory operands

Hello all I have a question relating to x86. In the Intel manual some instruction might take different types of memory operands. eg. IDIV r/m8 or IDIV r/m16 or IDIV r/m32 or IDIV r/m64 now they are ...
1
vote
1answer
52 views

PHP Variables not Calculating Correctly

SOURCE: http://pastebin.com/mBJMGean Variables are still not calculating correctly, They always reset every time even with using $_SESSION variables. This is trying to become a slideshow with 2 ...
1
vote
2answers
8k views

CS0019 Operator cannot be applied to operands of type 'bool' and 'int'

This program is in response to the assignment: "Create a method named Sum()that accepts any number of integer parameters and displays their sum. Write a Main()method that demonstrates the ...
4
votes
2answers
1k views

map operator [] operands

Hi all I have the following in a member function int tt = 6; vector<set<int>>& temp = m_egressCandidatesByDestAndOtMode[tt]; set<int>& egressCandidateStops = ...
6
votes
4answers
799 views

Multiplying char and int together in C

Today I found the following: #include <stdio.h> int main(){ char x = 255; int z = ((int)x)*2; printf("%d\n", z); //prints -2 return 0; } So basically I'm getting an overflow because the ...
1
vote
1answer
179 views

syntax case statement with calculated column

What is the right syntax for this query in MS-SQL 2005? select case app.NAMED_USER WHEN app.NAMED_USER > 50 AND app.NAMED_USER <=0 THEN 4 WHEN app.NAMED_USER > 500 THEN 9 WHEN ...
1
vote
4answers
361 views

What Does Adding One to a Character Array in C Do?

I'm looking through some code for learning purposes. I'm working through this portion of code. // e.g. const unsigned char data={0x1,0x7C ... } unsigned char buf[40]; memset(buf,0,40); buf[0] = 0x52; ...