Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
13answers
3k views

C++ — return x,y; What is the point?

I have been programming in C and C++ for a few years and now I'm just now taking a college course in it and our book had a function like this for an example: int foo(){ int x=0; int y=20; ...
28
votes
6answers
1k views

sizeof taking two arguments

In C.1.3 of the C++ IS (2003. It's in the C++11 IS, too), the standard points out a difference between ISO C and C++; namely, for char arr[100]; sizeof(0, arr) returns sizeof(char*) in C, but 100 ...
24
votes
1answer
266 views

Should the implementation guard itself against comma overloading?

For example uninitialized_copy is defined in the standard as: Effects: for (; first != last; ++result, ++first) ::new (static_cast<void*>(&*result)) typename ...
21
votes
7answers
2k views

What does the ',' operator do in C?

What does the ',' operator do in C?
12
votes
1answer
212 views

Does overloading the comma operator *really* affect the order of evaluation of its operands?

The comma operator guarantees left-to-right evaluation order. [n3290: 5.18/1]: The comma operator groups left-to-right. expression: assignment-expression expression , assignment-expression ...
10
votes
4answers
659 views

C comma operator

Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression? For example, int a = (10,20) ; when given in global scope yields an error ...
8
votes
1answer
379 views

What's up with static_cast with multiple arguments?

Can anyone tell me what this cast has for effect (besides setting happyNumber to 1337), if any at all, and if it has no other effect, how come I can write code like this??? Is this a compiler bug, or ...
7
votes
7answers
285 views

Suggest a book for tricky questions in C example unusual if condition [closed]

Possible Duplicate: What does the ',' operator do in C? Ok I had an interview today and they asked me what should be the output of the following code #include<stdio.h> int ...
7
votes
4answers
787 views

C++ overloading operator comma for variadic arguments

is it possible to construct variadic arguments for function by overloading operator comma of the argument? i want to see an example how to do so.., maybe something like this: template <typename ...
7
votes
3answers
434 views

Performance difference in for loop condition?

I have a simple question that I am posing mostly for my curiousity. What are the differences between these two lines of code? (in C++) for(int i = 0; i < N, N > 0; i++) for(int i = 0; i < ...
6
votes
2answers
357 views

Why does this code produce a warning referring to the comma operator?

When answering this question, I came across this code... #include <iostream> int main() { int const income = 0; std::cout << "I'm sorry your income is: " < income; // this ...
6
votes
5answers
285 views

When all does comma operator not act as a comma operator?

If you see this code, class A{ public: A(int a):var(a){} int var; }; int f(A obj) { return obj.var; } int main() { //std::cout<<f(23); // output: 23 ...
6
votes
5answers
221 views

What does this dynamic allocation do?

Today, I found out that you can write such code in C++ and compile it: int* ptr = new int(5, 6); What is the purpose of this? I know of course the dynamic new int(5) thing, but here i'm lost. Any ...
5
votes
3answers
71 views

Javascript “tuple” notation: what is its point?

At wtfjs, I found that the following is legal javascript. ",,," == Array((null,'cool',false,NaN,4)); // true The argument (null,'cool',false,NaN,4) looks like a tuple to me, but javascript does not ...
5
votes
1answer
450 views

Why doesn't my overloaded comma operator get called?

I'm trying to overload the comma operator with a non-friend non-member function like this: #include <iostream> using std::cout; using std::endl; class comma_op { int val; public: void ...
4
votes
3answers
167 views

Order of execution with comma operator in Perl

Forgive the poor readability of my examples, but this code is for code-golfing, not for production code. Consider the following script: print'+'x$z,($z=1,$w)?'':$_ for 1..3; This prints, as I ...
2
votes
5answers
83 views

Why does the following code not produce a compilation error?

I am using VS2005 compiler and I am expecting following code to give compilation error. int a=1, b= 2, c=3; a = (b,c); value of a after assignment is 3. As per my understanding it should give ...
2
votes
2answers
84 views

Why this code compiles in VS? (“extra” comma)

The line below is inside a for loop. If the method fails, it needs to break. CATEGORY_1 is an enum. I added this enum as a new parameter to AddToList method with a default value. If you see closely ...
2
votes
2answers
331 views

Commas in for loop

Why is the following line producing errors? for(int i = 0, int pos = 0, int next_pos = 0; i < 3; i++, pos = next_pos + 1) { // … } error: expected unqualified-id before ‘int’ error: ‘pos’ was ...
1
vote
4answers
129 views

Why is this double initialization with a comma illegal?

I have three code snippets. This one: 1,7; //yes, that's all the code compiles okay. This one: double d = (1, 7); also compiles okay. Yet this one: double d = 1, 7; fails to compile. ...
1
vote
2answers
187 views

C++ overide global operator comma gives error

the second function gives error C2803 http://msdn.microsoft.com/en-us/library/zy7kx46x%28VS.80%29.aspx : 'operator ,' must have at least one formal parameter of class type. any clue? ...