Tagged Questions

0
votes
1answer
23 views

how does linq2sql handle tables with just FK in it?

I have a mapping table like: Article_to_Categories ArticleID CategoryID How would I insert into this table using linq2sql?
4
votes
4answers
112 views

How does Perl decide which order to evaluate terms in an expression?

Given the code: my $x = 1; $x = $x * 5 * ($x += 5); I would expect $x to be 180: $x = $x * 5 * ($x += 5); #$x = 1 $x = $x * 5 * 6; #$x = 6 $x = 30 * 6; $x = 180; 180; …
0
votes
3answers
270 views

Where is the bug in this Console.WriteLine statement?

If you run the following code you get the output: The answer is: <br> <br> class Program { static void Main(string[] args) { HtmlElement element = …
2
votes
7answers
326 views

C #define macros

Hi. Here is what i have and I wonder how this works and what it actually does. #define NUM 5 #define FTIMES(x)(x*5) int main(void) { int j = 1; printf("%d %d\n", FTIMES …
1
vote
3answers
127 views

SQL Logic Operator Precedence: And and Or

Are the two statements below equivalent? SELECT [...] FROM [...] WHERE some_col in (1,2,3,4,5) AND some_other_expr and SELECT [...] FROM [...] WHERE some_col in (1,2,3) or some_ …
1
vote
5answers
107 views

So maybe I’m not getting the idea in Ruby but I have a question about Enumerables inject.

The |m,k| thing kind of throws me off. Does this have anything to do with order of precedence? m standing for 0 (or 1 in some languages) and k for the last in the Array/Hash whatev …
3
votes
1answer
416 views

Where is it legal to use ruby splat operator?

Splats are cool. They're not just for exploding arrays, although that is fun. They can also cast to Array and flatten arrays (See http://github.com/mischa/splat/tree/master for an …
0
votes
7answers
293 views

Understanding evaluation of expressions containing ‘++’ and ‘->’ operators in C.

Consider this example: struct { int num; } s, *ps; s.num = 0; ps = &s; ++ps->num; printf("%d", s.num); /* Prints 1 */ It prints 1. So I understand that it is beca …
0
votes
3answers
120 views

Does operator precedence matter for && and == in javascrtipt?

More specifically, is there a set of values ( a, b and c) for which the operator precedence matters in the statement: var value = (a && b == c); (with the exception of N …
3
votes
5answers
559 views

How do you do many to many table outer joins?

I have 3 tables, foo, foo2bar, and bar. foo2bar is a many to many map between foo and bar. Here are the contents. select * from foo +------+ | fid | +------+ | 1 | | 2 | …
1
vote
3answers
194 views

SQL Precedence Query

I have a logging table which has three columns. One column is a unique identifier, One Column is called "Name" and the other is "Status". Values in the Name column can repeat so t …
23
votes
5answers
1k views

Why does the Perl conditional operator not do what I expect?

This snippet of Perl code in my program is giving the wrong result. $condition ? $a = 2 : $a = 3 ; print $a; No matter what the value of $condition is, the output is always 3, h …
2
votes
7answers
1k views

Priority of C++ operators “&” and “->”

Given the following: &row->count Would &(row->count) be evaluated or (&row)->count be evaluated in C++? EDIT: Here's a great link for C++ precedence.