Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
215 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 ...
6
votes
4answers
288 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 ...
3
votes
1answer
28 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 ...
3
votes
2answers
421 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 = ...
2
votes
2answers
413 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. ...
2
votes
3answers
361 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 ...
2
votes
2answers
535 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
5answers
84 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 ...
1
vote
3answers
167 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 ...
1
vote
1answer
618 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 ...
1
vote
1answer
351 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 ...
1
vote
1answer
42 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
4answers
214 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; ...
0
votes
2answers
85 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") ...
0
votes
1answer
3k 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 ...
0
votes
1answer
58 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 ...