Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C Programming (http://www.velocityreviews.com/forums/f42-c-programming.html)
-   -   Pre And Post Increment Operator Output (http://www.velocityreviews.com/forums/t947314-pre-and-post-increment-operator-output.html)

Yogesh Yadav Pacheria 06-21-2012 07:56 PM

Pre And Post Increment Operator Output
 
I tried this Code

int main()
{
int i = 0;
i = ++i + ++i + ++i;
printf("%d",i);
}

Output should be 6

But In GCC it's 7

How and plz tell the order of evalution of pre and post bot

Thanks in Advance

Paul N 06-21-2012 08:08 PM

Re: Pre And Post Increment Operator Output
 
On Jun 21, 8:56*pm, Yogesh Yadav Pacheria <yogeshpache...@gmail.com>
wrote:
> I tried this Code
>
> int main()
> {
> * *int i = 0;
> * *i = ++i + ++i + ++i;
> * *printf("%d",i);
>
> }
>
> Output should be 6
>
> But In GCC it's 7
>
> How and plz tell the order of evalution of pre and post bot
>
> Thanks in Advance


The FAQ is at http://c-faq.com/ . Read it, you'll learn a lot from it.

John Gordon 06-21-2012 08:11 PM

Re: Pre And Post Increment Operator Output
 
In <8404c4f1-a3b7-46b7-ad9c-17de265f9aee@googlegroups.com> Yogesh Yadav Pacheria <yogeshpacheria@gmail.com> writes:

> int main()
> {
> int i = 0;
> i = ++i + ++i + ++i;
> printf("%d",i);
> }


> Output should be 6


No it shouldn't. Using multiple increment operators in this way is
undefined.

--
John Gordon A is for Amy, who fell down the stairs
gordon@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"


Andrew Cooper 06-21-2012 08:29 PM

Re: Pre And Post Increment Operator Output
 
On 21/06/2012 20:56, Yogesh Yadav Pacheria wrote:
> I tried this Code
>
> int main()
> {
> int i = 0;
> i = ++i + ++i + ++i;
> printf("%d",i);
> }
>
> Output should be 6
>
> But In GCC it's 7
>
> How and plz tell the order of evalution of pre and post bot
>
> Thanks in Advance


You have provided a program which tries to update i more than once in a
sequence point. This is strictly undefined by the C spec, so the
compiler is free to interpret it how it likes.

The disassembly (from GCC 4.6.3) looks a little like:

movl $7, %esi
movl $.LC0, %edi # String "%d\n"
movl $0, %eax
call printf

So what happens is that GCC calculates the value of i at compile time
and sticks it in as a constant.

~Andrew

Eric Sosman 06-21-2012 08:52 PM

Re: Pre And Post Increment Operator Output
 
On 6/21/2012 4:08 PM, Paul N wrote:
> On Jun 21, 8:56 pm, Yogesh Yadav Pacheria <yogeshpache...@gmail.com>
> wrote:
>> I tried this Code
>>
>> int main()
>> {
>> int i = 0;
>> i = ++i + ++i + ++i;
>> printf("%d",i);
>>
>> }
>>
>> Output should be 6
>>
>> But In GCC it's 7
>>
>> How and plz tell the order of evalution of pre and post bot
>>
>> Thanks in Advance

>
> The FAQ is at http://c-faq.com/ . Read it, you'll learn a lot from it.


Pay special attention to Question 3.2, which is almost
exactly what you asked. Much of the rest of Section 3 pertains
to your issue, too.


--
Eric Sosman
esosman@ieee-dot-org.invalid



BartC 06-21-2012 09:08 PM

Re: Pre And Post Increment Operator Output
 


"Yogesh Yadav Pacheria" <yogeshpacheria@gmail.com> wrote in message
news:8404c4f1-a3b7-46b7-ad9c-17de265f9aee@googlegroups.com...
> I tried this Code
>
> int main()
> {
> int i = 0;
> i = ++i + ++i + ++i;
> printf("%d",i);
> }
>
> Output should be 6
>
> But In GCC it's 7
>
> How and plz tell the order of evalution of pre and post bot


I agree it ought to be 6. Other C compilers, and even one or two other
languages, give a result of 6.

But C allows compilers to evaluate expressions their own way, which may give
undefined results when a variable is modified several times in the same
expression. GCC must be one of those compilers that takes full advantage of
that.

So you will have to rearrange the expression into separate statements (if it
ever did anything useful to start with..).

--
Bartc


Eric Sosman 06-21-2012 09:32 PM

Re: Pre And Post Increment Operator Output
 
On 6/21/2012 5:08 PM, BartC wrote:
>
>
> "Yogesh Yadav Pacheria" <yogeshpacheria@gmail.com> wrote in message
> news:8404c4f1-a3b7-46b7-ad9c-17de265f9aee@googlegroups.com...
>> I tried this Code
>>
>> int main()
>> {
>> int i = 0;
>> i = ++i + ++i + ++i;
>> printf("%d",i);
>> }
>>
>> Output should be 6
>>
>> But In GCC it's 7
>>
>> How and plz tell the order of evalution of pre and post bot

>
> I agree it ought to be 6.


Nitwit.

--
Eric Sosman
esosman@ieee-dot-org.invalid



Keith Thompson 06-21-2012 10:17 PM

Re: Pre And Post Increment Operator Output
 
Yogesh Yadav Pacheria <yogeshpacheria@gmail.com> writes:
> I tried this Code
>
> int main()
> {
> int i = 0;
> i = ++i + ++i + ++i;
> printf("%d",i);
> }
>
> Output should be 6
>
> But In GCC it's 7
>
> How and plz tell the order of evalution of pre and post bot


You've already been directed to the C FAQ, particularly section 3, which
explains why your assumption that the output should be 6 is meaningless.

There are some other (fairly) minor problems with your code:

You need "#include <stdio.h>" in any program that calls printf.

"int main()" should be "int main(void)".

You should print a newline at the end of the output:

printf("%d\n", i);

You should have a "return 0;" at the end of the program. It's not
necessary if your compiler conforms to C99 or later, but it's a good
idea.

The real problem is this: whatever

i = ++i + ++i + ++i;

was *intended* to do, there is certainly a better and clearer way to
write it -- even its behavior were well defined (as it is in some
languages).

--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Will write code for food.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"

BartC 06-21-2012 11:00 PM

Re: Pre And Post Increment Operator Output
 


"Eric Sosman" <esosman@ieee-dot-org.invalid> wrote in message
news:js03uf$sb3$1@dont-email.me...
> On 6/21/2012 5:08 PM, BartC wrote:


>> "Yogesh Yadav Pacheria" <yogeshpacheria@gmail.com> wrote in message
>> news:8404c4f1-a3b7-46b7-ad9c-17de265f9aee@googlegroups.com...


>>> int i = 0;
>>> i = ++i + ++i + ++i;
>>> printf("%d",i);


>>> Output should be 6
>>>
>>> But In GCC it's 7


>> I agree it ought to be 6.

>
> Nitwit.


Yet, given the OP's program, and a randomly assigned but unknown compiler,
what result would you put your money on, if you were obliged to gamble?

And once you know the result, would you gamble on the same compiler giving
the exactly the same answer one more time?

--
Bartc


Keith Thompson 06-21-2012 11:51 PM

Re: Pre And Post Increment Operator Output
 
"BartC" <bc@freeuk.com> writes:
> "Eric Sosman" <esosman@ieee-dot-org.invalid> wrote in message
> news:js03uf$sb3$1@dont-email.me...
>> On 6/21/2012 5:08 PM, BartC wrote:

>
>>> "Yogesh Yadav Pacheria" <yogeshpacheria@gmail.com> wrote in message
>>> news:8404c4f1-a3b7-46b7-ad9c-17de265f9aee@googlegroups.com...

>
>>>> int i = 0;
>>>> i = ++i + ++i + ++i;
>>>> printf("%d",i);

>
>>>> Output should be 6
>>>>
>>>> But In GCC it's 7

>
>>> I agree it ought to be 6.

>>
>> Nitwit.

>
> Yet, given the OP's program, and a randomly assigned but unknown compiler,
> what result would you put your money on, if you were obliged to gamble?


Fortunately, we are not obliged to gamble.

> And once you know the result, would you gamble on the same compiler giving
> the exactly the same answer one more time?


What would be the point? Don't waste time guessing what the code might
do for a given implementation. Just fix it.

--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Will write code for food.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"


All times are GMT. The time now is 10:23 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57