For issues relating to defining or performing pre increment operations.

learn more… | top users | synonyms

1
vote
7answers
67 views

Semantics of pre- and postfix “++” operator in Java [duplicate]

I wondering to know why this snippet of code give output 112 How this last digit 2 was creating? public static void main(String[] args) { int i = 0; System.out.print(++i); ...
0
votes
1answer
48 views

Post-Incrementing/decrementing in recursive method calls (Java)

Say you have a recursive method, and you post-increment/decrement a value in the recursive call. Why will this result in a stack overflow exception when a pre-increment/decrement will not? Ex. ...
1
vote
1answer
35 views

Mixed increment operators with logical operators

I have a question concerning pre and post increments with logical operators if I have this code void main() {int i = - 3 , j = 2 , k = 0 , m ; m=++i||++j&&++k; printf("%d %d %d ...
-6
votes
2answers
106 views

C code, where i have a value of an integer variable and after a pre-increment operation i need to get the output [duplicate]

i=2; i= ++i + ++i + ++i; printf(i) Please give the output with explanation? The answer I'm getting is 12 but it should be 13.
-11
votes
1answer
111 views

Compilation of the expression ++i + ++i + ++i? [duplicate]

I used to have trouble with this kind of expressions var=5; another_var=++var + ++var + ++var; I was expecting it to be 24 but got different response from gcc i.e. 22 which was not clear to me.The ...
0
votes
4answers
159 views

Pre and post increment in a for loop [duplicate]

Is it more performant to do a pre-increment vs a post-increment in a for loop in java ? Sample code : for (int i=0; i<10; i++) and for (int i=0; i<10; ++i) I notice that when i do a ...
37
votes
5answers
2k views

`j = ++(i | i);` and `j = ++(i & i);` should an error: lvalue?

I was expecting that in my following code: #include<stdio.h> int main(){ int i = 10; int j = 10; j = ++(i | i); printf("%d %d\n", j, i); j = ++(i & i); ...
8
votes
3answers
202 views

What should be the output of echo ++$a + $a++ [duplicate]

In the PHP manual, operator precedence section, there is this example: // mixing ++ and + produces undefined behavior $a = 1; echo ++$a + $a++; // may print 4 or 5 I understand the behavior is ...
1
vote
3answers
90 views

Lvalue issues in increment Operators [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) #include<stdio.h> int main() { char a[]="Hello"; char *p=a; while(*p) ...
2
votes
3answers
88 views

Unpredicted language behavior i++

I tried to do the following i=0; if (i++ % Max_Col_items == 0 && i !=0) { } and discovered that it increased i in the middle i % Max_Col_items == 0; i=i+1; i !=0; when I though it would ...
5
votes
3answers
117 views

Can we reliably pre-increment/decrement rvalues?

For example, std::vector<int>::iterator it = --(myVec.end());. This works in GCC 4.4 but I have heard a rumor that it's not portable.
4
votes
1answer
112 views

Why is there no difference in ++foo and foo++ when the ++ operator is overloaded? [duplicate]

Possible Duplicate: Post-increment Operator Overloading Why are Postfix ++/— categorized as primary Operators in C#? I saw that I can overload the ++ and -- operators. Usually you use ...
1
vote
2answers
35 views

Pre increment operator

#include<iostream> using namespace std; int main() { int i=2; cout<<++i<<" "<<++i; return 0; } Why the output of program is '4 4' not '3 4' ?
4
votes
4answers
563 views

Post-increment and pre-increment operator in C

Why is k not getting incremented whereas,i and j are getting incremented in the same expression.And i also want to know what is the output of the program.I am getting the output as -2 3 1 0 #include ...
1
vote
3answers
84 views

Dereferencing a preincremented pointer is giving odd result

This one must be a silly question, but I am not able to understand why this happens int main() { int i=20; int *p=&i; cout<<"old p="<<p<<endl; *(++p) = 10; ...
0
votes
2answers
154 views

Why does post increment operator not work although preincrement does work in this code?

I am really new to programming (I'm an electronics and comm. engineer) and I am not able to figure out why one program works and the other one doesn't. I'd like to get a good understanding of ...
0
votes
2answers
214 views

incrementing struct members

Say I have a struct defined as follows struct my_struct { int num; }; .... Here I have a pointer to my_struct and I want to do an increment on num void foo(struct my_struct* my_ptr) { ...
0
votes
1answer
155 views

If there any difference using ++variable instead of variable++ in a for loop? [duplicate]

Possible Duplicate: Is there a performance difference between i++ and ++i in C++? Difference between i++ and ++i in a loop? I know that a++ return the original value of a and then add one ...
2
votes
7answers
651 views

Pre increment and post increment

I know what ++ & -- means. It's each add 1 and subtract 1. when x = 2, y = 3, z = 1 y++ + z-- + x++ means 3(+1) + 1(-1) + 2(+1) and the result is gonna be 4 + 0 + 3 = 7. but when I compile ...
1
vote
2answers
119 views

Is there a performance difference between i++ and ++i in JavaScript? [closed]

I read Is there a performance difference between i++ and ++i in C?: Is there a performance difference between i++ and ++i if the resulting value is not used? What's the answer for JavaScript? ...
4
votes
6answers
561 views

Why is i=i+1 faster than i++?

Test this code in Flash: var i:int = 0; for (var j:int = 0; j < 5000000; j++) { i=i+1; }// use about 300ms. i = 0; for (var j:int = 0; j < 5000000; j++) { i++; }// use about 400ms i = ...
2
votes
4answers
112 views

post increment behaviour [duplicate]

i have small doubt.why the below code is printing value i=2. int i=2; i=i++; System.out.println(i); can someone please explain me what is happening in line no 2. so there is no meaning here of ...
0
votes
4answers
170 views

How a=3 and b=4?

I found an interesting Programing question : What will be the values of a,b,c,f after executing this programe ? int i=0,a=0,b=0,c=0,f=0; while(i<=5){ switch(i++){ case 1:++a; case 2:++b; ...
2
votes
5answers
240 views

Why java statement evaluation is happening like these ?

int z = 1; System.out.println(z++ == ++z); System.out.println(++z == z++); the output will be: false true and I don't get why, please explain this to me.
4
votes
4answers
386 views

The assignment to variable has no effect?

When I do this: count = ++count; Why do i get the warning - The assignment to variable count has no effect ? This means that count is incremented and then assigned to itself or something else ? Is it ...
1
vote
1answer
130 views

SCJP program giving output 8 2 how?

class Foozit { public static void main(String[] args) { Integer x = 0; Integer y = 0; for (Short z = 0; z < 5; z++) { if ((++x > 2) || ++y > 2) ...
8
votes
3answers
197 views

How does expression evaluation order differ between C++ and Java?

I've had my brain wrinkled from trying to understand the examples on this page: http://answers.yahoo.com/question/index?qid=20091103170907AAxXYG9 More specifically this code: int j = 4; cout ...
1
vote
1answer
119 views

Result of Boolean Expression in C

Why does the following expression evaluate to 0? i > --i Suppose i = 5. Evaluating the expression from left to right, we evaluate the left operand (i) to get 5 and we evaluate the right operand ...
3
votes
1answer
166 views

Pre-increment in PHP with magic get and set defined

I have a problem that has been spoiling the way I want to do the things for a long time. It's related to the use of magic get and set in PHP and trying to do a pre-increment over an object. I have a ...
3
votes
6answers
1k views

Behaviour of preincrement operator in C program

I am running the following C code: #define cube(x) (x*x*x) void main() { int x=2,y; y=cube(++x); printf("%d %d",++x,y); } I am expecting result as 6,60 But ...
2
votes
4answers
396 views

pointer increment and dereference (lvalue required error)

I am trying to understand how pointer incrementing and dereferencing go together, and I did this to try it out: #include <stdio.h> int main(int argc, char *argv[]) { char *words[] = ...
0
votes
2answers
82 views

Is using a predecrement operator on the right hand side of an assignment valid C++?

I almost never put a ++ or -- anywhere except on its own line. I know they can lead to undefined behavior and can be hell for debugging. But for verbosity purposes, I'm tempted. Is this valid code? ...
4
votes
2answers
128 views

Java pre and post incrementing

I am having trouble understanding the following code block. int count = 0; for (int i = 0; i < 3; i++){ count += (count++); System.out.println("count = " + count); ...
2
votes
2answers
168 views

Why do textbooks prefer “++x” to “x++” when it is context invariant? [duplicate]

Possible Duplicate: Difference between i++ and ++i in a loop? Is there a performance difference between i++ and ++i in C++? Incrementing in C++ - When to use x++ or ++x? Why use ++i ...
0
votes
10answers
280 views

Increment, preincrement and postincrement

Help me to resolve this please. The steps that follows that expressions are: //Expression offSpring1[m1++] = temp1; //Steps: 1.- increment m1 2.- assign temp1 to offSpring I have ...
-6
votes
1answer
98 views

Generate jquery array so I can use ++arrayname[i]; [closed]

I want to generate a basic array and declare it with a 'n' number of elements in jquery. I want to initialize each value of the array with 0 and I want to be able to call increment each value of the ...
2
votes
3answers
205 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
313 views

how does increment work? [duplicate]

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 ...
-3
votes
4answers
628 views

Explaining different outputs of ++b and b++ using gcc C compiler [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Doubt in C increment operator From what i have searched the behavior is undefined ...
4
votes
5answers
105 views

++nc vs nc = nc + 1

In K&R Ch 1: The statement ++nc presents a new operator, ++, which means increment by one. You could instead write nc = nc + 1, but ++nc is more concise and often more efficient. When would ...
36
votes
6answers
2k views

C# Pre- & Post Increment confusions

I am a little confused about how the C# compiler handles pre- and post increments and decrements... When i code the following: int x = 4; x = x++ + ++x; x will have the value 10 afterwards. I ...
4
votes
4answers
110 views

Atypical uses for Javascript's ++ and — operators

If I recall correctly from Crockford's "Javascript: The Good Parts", he is not in favor of using the ++ or -- operators, but I also tend to recall he doesn't provide an especially strong argument ...
7
votes
4answers
813 views

Is the pre-incriment operator thread-safe? (java)

I'm making a program in java that races a few cars against each other. Each car is a separate thread. When cars complete the race, each one all calls this method. I've tested the method at varying ...
0
votes
5answers
682 views

Multiple increment operators in single statement [duplicate]

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
2answers
360 views

Doubt in C increment operator [duplicate]

Possible Duplicate: post and pre increment in c I am new to C, i have an Increment operator program in C #include<stdio.h> main(){ int a, b; a = 2; b = a + ++a + ++a; ...
1
vote
7answers
3k views

The difference between ++Var and Var++ [duplicate]

Possible Duplicate: whether a language needs preIncrement (++x) and postIncrement (x++) In programming, particularly in Java, what is the difference between: int var = 0; var++; and ...
5
votes
3answers
178 views

Closure Compiler - can a++ >= 3 become ++a > 3?

I admit that I asked a question about why Closure Compiler does not shorten certain code which looks shortenable at first sight a few days ago already, but that reason is not applicable in this case ...
1
vote
4answers
271 views

equivalent expression for a[j++] = ++i without using pre or post increment operators

So I am pondering this question (this is a homework/exam review problem): Write down an equivalent expression for a[j++] = ++i; without using pre/post increment operators. If no such expression can ...
0
votes
7answers
608 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 ...
8
votes
6answers
6k 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?

1 2