Tagged Questions
69
votes
13answers
7k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
11
votes
2answers
664 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?
9
votes
6answers
650 views
Difference between i = ++i and ++i [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
What is the difference between i = ++i; and ++i; where i is an integer with value ...
5
votes
6answers
1k views
Post Increment and Pre Increment concept?
I dont understand the concept of postfix and prefix increment or decrement. Can any one give a better Explanation?
4
votes
8answers
3k views
Incrementing in C++ - When to use x++ or ++x?
I'm currently learning C++ and I've learned about the incrementation a while ago.
I know that you can use "++x" to make the incrementation before and "x++" to do it after.
Still, I really don't know ...
3
votes
5answers
199 views
How does this code work?
I am looking at c++ for dummies and found this code
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int nextStudentId = 1000; // first legal Student ...
1
vote
3answers
71 views
Pre / Post Increment Explanation
Please be easy on me and don't shoot me as I'm still newbie.
I'm totally confused and can't for life figure out why when I run this code:
int y = 9;
cout << "++y = " << ++y << ...
1
vote
5answers
120 views
how does increment work? [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Undefined Behavior and Sequence Points
Ok we all know that i++ increments value ...
1
vote
10answers
450 views
++i or i++ in for loops? [closed]
Possible Duplicate:
Is there a performance difference between i++ and ++i in C++?
hi I was wondering in a normal for loop why eclipse and some other people code writing ++i is there a ...
1
vote
23answers
4k views
What is more efficient i++ or ++i? [closed]
Exact Duplicate: Is there a performance difference between i++ and ++i in C++?
Exact Duplicate: Why should I use ++i?
Exact Duplicate: Difference between i++ and ++i in a loop?
What is more ...
0
votes
5answers
197 views
Multiple increment operators in single statement [closed]
Possible Duplicate:
Undefined Behavior and Sequence Points
Pleae explain the behaviour of following statements
int b=3;
cout<<b++*++b<<endl;
How will it be calculated?
0
votes
7answers
365 views
Operator Precedence.. () and ++
Salute..
I have an unusual problem.
Here in this table in MSDN library we can see that precedence of () is higher than ++ (Pre-increment) .
but when I run this code, it seems that precedence of ...