Tagged Questions
1
vote
3answers
49 views
Order of calls and side effects
Consider an operation like this :
int a = f1(mystream)*f2(mystream)+f3(mystream);
Where f1, f2, f3 are of the following form :
int f(std::istream&)
or
int f(std::ostream&)
Do I have ...
1
vote
3answers
60 views
Would unary negate operator come before the function call?
I don't have a compiler handy but this is itching my curiosity. If I have code like this:
float a = 1;
float b = 2;
-a.add(b);
Would it be run as:
add(-a, b);
or
-add(a, b);
2
votes
3answers
156 views
Evaluation order of overloaded operator |?
5.15 Logical OR operator in the standard says the following:
Unlike |, || guarantees left-to-right evaluation;
Does this mean somewhere I cannot locate in the standard, | is defined to evaluate ...
4
votes
3answers
288 views
What is the order of evaluation in C# and C++?
I have tried the following thing in C# and C++:
int a = 5;
int b = (a++)+(++a)+(a--)+(--a);
I have tried to get result of b in C# and C++.
But I got different answer in both.
I got 23 in C# and 20 ...
6
votes
5answers
246 views
C++ operators question
Given that x = 2, y = 1, and z = 0, what will the following statement display?
printf("answer = %d\n", (x || !y && z));
it was on a quiz and i got it wrong, i dont remember my professor ...
11
votes
2answers
1k views
Multiple preincrement operations on a variable in C++(C ?)
Why does the following compile in C++?
int phew = 53;
++++++++++phew ;
The same code fails in C, why?
2
votes
8answers
897 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 because according to ...