473,382 Members | 1,710 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Function order.

mdh
May I ask the group the following: (Again, alas , from K&R)

This is part of a function:

while ( ( array1[i++] = array2 [k++]) != '\0' ); /* etc etc */
Is this the order that this is evaluated?

-> array2[k] is assigned to array1[i] ....???? the reason being it is
within parenthesis ???

-> array1[i] is tested for non-equality to '\0'

-> if TRUE array1[i] is incremented to array1[i+1]

-> if TRUE array2[k] is incremented to to array2[k+1]

-> if FALSE exit loop and neither k nor i is incrmented.

Thank you for your indulgence....and also thank you all for making this
so pleasurable.

May 2 '06 #1
16 2415
mdh wrote:
May I ask the group the following: (Again, alas , from K&R)

This is part of a function:

while ( ( array1[i++] = array2 [k++]) != '\0' ); /* etc etc */
Is this the order that this is evaluated?

-> array2[k] is assigned to array1[i] ....???? the reason being it is
within parenthesis ???
Correct.

Also both i and k are incremented.

The expression could be written as

do
{
array1[i] = array2[k];
++i;
++k;
} while( array1[i-1] != '\0' )

-> array1[i] is tested for non-equality to '\0'

-> if TRUE array1[i] is incremented to array1[i+1]
No, i is incremented in the copy.
-> if TRUE array2[k] is incremented to to array2[k+1]
No, k is incremented in the copy.
-> if FALSE exit loop and neither k nor i is incrmented.

No, i and k will have been incremented.

--
Ian Collins.
May 2 '06 #2
mdh

Ian Collins wrote:
-> array1[i] is tested for non-equality to '\0'


Ian,

am I correct in that array1 NOT array2 is tested for inequality to
'\0'?

Thanks.

May 2 '06 #3
mdh wrote:
Ian Collins wrote:

-> array1[i] is tested for non-equality to '\0'

Ian,

am I correct in that array1 NOT array2 is tested for inequality to
'\0'?

It's the result of the assignment operation that is tested.

--
Ian Collins.
May 2 '06 #4
Ian Collins wrote:
mdh wrote:
Ian Collins wrote:
-> array1[i] is tested for non-equality to '\0'

Ian,

am I correct in that array1 NOT array2 is tested for inequality to
'\0'?


It's the result of the assignment operation that is tested.

Which incidentally is why we have the common assignment rather than
comparison bug,

if( i = 42 )

--
Ian Collins.
May 2 '06 #5
mdh

Ian Collins wrote:
It's the result of the assignment operation that is tested.

Ian, this is all rather new to me. Naively I thought that the array
was compared to '\0' so I am not quite sure by what you mean with
"result of the assignment operation". Is it possible to make your
explanation a little more concrete. Thank you

May 2 '06 #6
mdh wrote:
Ian Collins wrote:

It's the result of the assignment operation that is tested.


Ian, this is all rather new to me. Naively I thought that the array
was compared to '\0' so I am not quite sure by what you mean with
"result of the assignment operation". Is it possible to make your
explanation a little more concrete. Thank you

OK,

I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression is 42
.. The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )

--
Ian Collins.
May 2 '06 #7
mdh

Ian Collins wrote:

(a = 42) is an assignment expression, the result of the expression is 42
. The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )

Thanks Ian....I "think" I understand :-)

May 2 '06 #8
mdh wrote:
Ian Collins wrote:
(a = 42) is an assignment expression, the result of the expression is 42
. The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )


Thanks Ian....I "think" I understand :-)

Once you understand the concept of an assignment yielding a result, the
fog clears...

--
Ian Collins.
May 2 '06 #9
Ian Collins wrote:
mdh wrote:
Ian Collins wrote:

It's the result of the assignment operation that is tested.
Ian, this is all rather new to me. Naively I thought that the array
was compared to '\0' so I am not quite sure by what you mean with
"result of the assignment operation". Is it possible to make your
explanation a little more concrete. Thank you

OK,

I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression is 42.


Correct.
The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )


Absolutely not. Parenthesis do not introduce sequence points, the
following is undefined:
a = (a++);

where as this is not:

temp = a++;
a = temp;

Robert Gamble

May 2 '06 #10
Robert Gamble wrote:
Ian Collins wrote:
I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression is 42.

Correct.

The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )

Absolutely not. Parenthesis do not introduce sequence points, the
following is undefined:
a = (a++);

where as this is not:

temp = a++;
a = temp;

Oops, sorry I got that wrong.

The parenthesis ensure the assignment precedes the comparison, otherwise
the result would be a = (b==0).

--
Ian Collins.
May 2 '06 #11
On Tue, 02 May 2006 13:37:25 +1200, Ian Collins <ia******@hotmail.com>
wrote:
mdh wrote:
Ian Collins wrote:

It's the result of the assignment operation that is tested.
Ian, this is all rather new to me. Naively I thought that the array
was compared to '\0' so I am not quite sure by what you mean with
"result of the assignment operation". Is it possible to make your
explanation a little more concrete. Thank you

OK,

I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression is 42
. The parenthesis ccreate a sequence point, like a hidden temporary
variable.


The parentheses do not create a sequence point the way the term is
used in the standard. Side effects may not yet be complete.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )

Remove del for email
May 2 '06 #12
Ian Collins wrote:
Robert Gamble wrote:
Ian Collins wrote:
I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression is 42.


Correct.

The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )


Absolutely not. Parenthesis do not introduce sequence points, the
following is undefined:
a = (a++);

where as this is not:

temp = a++;
a = temp;

Oops, sorry I got that wrong.

The parenthesis ensure the assignment precedes the comparison, otherwise
the result would be a = (b==0).


No, it does not force the assignment to take place before the
comparison. It could work out what value will be assigned to a, compare
that against 0, then do the actual assignment.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
May 2 '06 #13
Flash Gordon wrote:
Ian Collins wrote:
Robert Gamble wrote:
Ian Collins wrote:

I might get some terms wrong, but others will correct me if I do...

(a = 42) is an assignment expression, the result of the expression
is 42.
Correct.
The parenthesis ccreate a sequence point, like a hidden temporary
variable.

So if we have if( (a=b) == 0 )

this is equivalent to

temp = (a=b)
if( temp == 0 )
Absolutely not. Parenthesis do not introduce sequence points, the
following is undefined:
a = (a++);

where as this is not:

temp = a++;
a = temp;

Oops, sorry I got that wrong.

The parenthesis ensure the assignment precedes the comparison, otherwise
the result would be a = (b==0).

No, it does not force the assignment to take place before the
comparison. It could work out what value will be assigned to a, compare
that against 0, then do the actual assignment.


True, but the net result is the same, the parenthesis are required to
ensure the value of b is assigned to a and the value assigned to a
compared with 0.

--
Ian Collins.
May 2 '06 #14
In article <11**********************@j73g2000cwa.googlegroups .com>
mdh <md**@comcast.net> wrote:
[edited somewhat]
while ((array1[i++] = array2[k++]) != '\0')

Is this the order that this is evaluated?
Others started answering this question, but I think it is better to
back off and *not* answer this question, or at least, not "as asked".

Specifically, you asked about "the order that this is evaluated".
The problem here is that in C, many expressions do not *have* any
particular ordering (sequence of operations). The only thing that
is guaranteed about them is the *result*, and then only if nothing
goes wrong along the way.
[first] array2[k] is assigned to array1[i] ....???? the reason
being it is within parenthesis ???
Parentheses affect the "binding" of various operators.

I prefer this word to "precedence", because the word "precedence"
is built on the word "precede", which seems to say "happens first".

What you need to understand here is that there are two separate
things that happen:

- First, you compile your code.
- Then, later -- usually much later, considering computer speeds
are in the gigahertz range -- you run your code.

The parentheses only affect the compilation. The order of operations
happens later, when you run the code.

Compilers take "expressions" and (generally) build something called
a "parse tree". Consider a simple expression like:

a + b * c

There are two trees we can build from this. One looks like this:

*
/ \
+ c
/ \
a b
which means "compute a + b, and compute that times c", and the other
looks like this:

+
/ \
a *
/ \
b c

which means "compute a + (result of computing b times c)".

What parentheses do is let you control the *parse tree*, and (in
C at least) nothing else. By default, without parentheses, C is
required to build the second parse tree -- the "*" operator binds
more tightly than the "+" one, so

a + b * c

"looks like":

a + b*c

with the "b*c" part "close together" (tightly bound) and the "+"
parts "far apart" (loosely bound). If you add parentheses around
the "+" part, however, you can force it to bind more tightly:

(a+b) * c

Again, this only affects the parse tree.

Now consider something a little more complicated: instead of
simple variables a, b, and c, let us use three functions that
return values:

f() + g() * h()

and here they are:

int f(void) { puts("f() returns 5"); return 5; }
int g(void) { puts("g() returns 2"); return 2; }
int h(void) { puts("h() returns 3"); return 3; }

Now, we get f() + (g() * h()) by default, because the "*" binds
more tightly; but we can write (f() + g()) * h() to get the
first two to bind together over the "+", before the "*" can bind
to the rest. One way gives 5 + (2*3) = 5+6 = 11; the other way
gives (5+2)*3 = 7*3 = 21. But what happens later, when we actually
*run* the program?

Whenever f() gets called, it prints a line. Whenever g() gets
called, it prints a different line. Whenever h() is called, it
prints a third line. So we will be able to find out which order
the compiler actually used.

If we asked for (f() + g()) * h(), one way the compiler can
do this is to call f() first, then call g(), then add the two
results, then call h(), then multiply its result by the result
of the previous addition. That will print f()'s line first,
g()'s line second, and h()'s third. But another way to do it
is to call h() first, save that value, then call f(), then
call g(), then add, and only then multiply. Or the compiler
could call h(), then g(), then f(); or it could call f(), then
h(), then g(); or it could call g(), then h(), then f(); and
so on.

There is no constraint on the order of the *calls*, as long
as it gets the right result (21, in this case).

If we asked for f() + (g() * h()), the compiler still has total
freedom to call the three functions in any order, as long as it
multiplies the result of g() and h() and adds the result of f().
Again, there is no constraint on the order of the *calls*, as
long as it gets the right result (11 this time).

Thus, for the most part, the *runtime* order of *execution* is
not connected (or not strongly connected) to the *compile-time*
order of "parse binding" -- and parentheses only affect the
compile-time binding.

C gives us something formally called "sequence points" that
control runtime order of execution. See the FAQ for details;
but it is safe to assume that you hit a sequence point at the
semicolons between statements.

When you hit a sequence point, all the expressions that are "in
flight" have to "finish up": a compiler is kind of like a juggler
tossing eggs (instead of balls) in the air, and when you give it
a complicated expression with lots of [] and ++ and so on, it throws
a whole bunch of eggs into the air. They fly around in some
complicated fashion, but at the "sequence point", they all land
somewhere so that you can stop and look at them. Things go wrong
if two eggs collide: you get a big mess. This means "don't write
stuff like a[i++] = a[i++], which tosses two i++ eggs that collide".

With all that said, we can go back to the original, rather
complicated expression:
while ((array1[i++] = array2[k++]) != '\0')
This does 7 separate things at runtime:

- Schedule "i" to get incremented; temporarily save ("produce")
the value of "i" before any such incrementation (the "old" value).

- Schedule "k" to get incremented; produce the old value of "k"

- Using the old value of "i", find array1[i], as an object
(it is on the left hand side of an "=" operator so we will
store a new value here).

- Using the old value of "k", find array2[k], as a value
(it is on the right hand side of an "=" operator so we need
its value).

- Schedule a copy the value found into the location found
(changing array1[old-value-of-i] to array2[old-value-of-k],
that is).

- Produce, as the result of the "=" operator, the value that
was stored into the object on the left (array1[old i]).
Usually this is the same as the value retrieved from the
right (array2[old k]), but if the type of the object on
the left is different from the type of the value on the
right, it may not be the same.

For instance, if you copy a full-blown "int" value into an
"unsigned char", the top bits of the value get chopped off.
On a typical implementation, doing:

unsigned char x;
int y = 32767;

printf("(x=y) = %d\n", x = y);

will print "(x=y) = 255".

- Compare the result produced by the assignment to '\0', which
is just a way of writing the integer constant 0 while telling
the programmer reading the code that you mean "end of string".
The comparison will produce 1 if the result is not 0, and 0 if
the result is 0, so the loop will run "while not end of string"
(I say "end of string" instead of "zero" because I assume the
'\0' means "end of string" -- these may be the same thing
underneath, but they have different "intentions", as it were;
much like accidentally cutting yourself with a knife does not
mean you intended to commit suicide :-) ).

By my count, then, the compiler has 7 things ("eggs") flying through
the air all at once in this expression: i and k are being incremented,
their old values are being used to locate and evaluate array[something]
and array2[something] respectively, the value at array2[something]
is being copied to the object named array1[something], the result
of that copy is being saved temporarily, and that result is being
compared against "end of string". All seven of those things have
to "not collide" -- and in fact they do not, because "i" and "k"
are different variables and "array1" and array2" are different from
each other and from both of those, and all the rest of the things
listed above are "values", and values never collide (only objects
can collide).

(I could re-count and get 6 or 9 things above, of course. Notice
that for i++ and k++ I listed "one thing" even though each one was
two parts: "schedule increment" and "produce old value". Then,
later, I listed "two things" for the "x = y" type assignment:
schedule the assignment to happen, and produce a value. I only
split it up because the "produce a value" part was so long.)

All the "scheduled" items above happen by the next sequence point.
There is a sequence point after the "full expression" in a testing
statement (an "if" or "while", or the middle part of a "for" loop
-- actually all parts of the for loop have sequence points, but
only the middle part gets tested). So by the time you get into
the body of the "while" loop (if there is one), i and k have been
incremented and array1[old value of i] has been changed. If the
loop body is empty, the sequence point ensures that all of this
has happened before the "while" tries again.

As a last comment:
-> if FALSE exit loop and neither k nor i is incrmented.


This is wrong: the expression schedules i and k to get incremented,
schedules array1[something] to get updated, and tests the result
that will wind up in array1[something]. (The test can happen
before, during, or after the actual update; again there is no real
constraint on the order of operations here.) Then there is a
sequence point and now *all* scheduled changes *have* happened;
only then does the while loop either run, or not run.

Thus, when the loop does in fact exit, i and k *have* been
incremented and array1[previous value of i] has been changed,
set to '\0'. If you want to leave i and k unchanged, you have
to rewrite the loop:

while ((array1[i] = array2[k]) != '\0') {
i++;
k++;
}

Here the compiler does *not* schedule updates to i and k as
part of the "copy value to array1[something] and test result"
loop-test. The sequence point after the full expression
merely updates array1[i] -- and we can just talk about
array1[i] here because i is unchanged -- and only if we get
into the loop itself do we find a statement that schedules
an update to "i":

i++;

Here we "schedule an increment and produce the previous value",
but then we ignore the value by hitting the semicolon ending the
statement, which also enforces a sequence point. Thus, i gets
incremented, and nobody cares about the value, so the compiler does
not actually have to *save* the old value anywhere, and a good one
will omit the extra code needed for that. A crappy compiler might
produce extra code to save the old value. This is one reason you
find people advising other people to write ++i instead of i++: back
in the early 1980s, some compilers really *were* this bad, and
produced shorter, faster code with ++i instead of i++. These days,
with GCC producing good fast code either way, there is no excuse
for a compiler to produce slow code for i++. Write whichever
one you find clearer, if the value is not important.

(If the value *is* important, of course, you have to write the
correct one: a[++i] is very different from a[i++], since ++i not
only schedules the increment, but also produces the value you will
have *after* incrementing, instead of the value you did have *before*
incrementing. Note that in most cases, a good compiler can produce
short, fast code for either one -- again the main reason to pick
one or the other is based first on the result you need and then on
the way you prefer to write it, not the code that comes out of the
compiler.)

If all that was not enough, :-) let me make one more point.
Expressions do two things in C: produce values (always), and cause
"side effects" (optional). "Side effects" are things like changing
the values stored in variables, or -- at least formally in langauges
other than C -- producing output. (In C, output is hidden behind
functions that use Implementation Magic, so you cannot really "see"
the "true" expressions that do the trick.) The value of any
expression always has a "type", and the type determines the range
of possible values: "unsigned char" is in [0..UCHAR_MAX], "int" is
in a wider range including negative numbers, "double" handles
fractional parts, and so on; and the special "void" type is the
empty set of values (slightly peculiar, but still considered "a
value"). When you write an expression as a statement, you throw
away the final value, so:

i = j;

has a value that gets thrown away, as does:

printf("the answer is %d\n", i);

In both cases, the reason for throwing away the value is that you
really only wanted the side effect: changing i, and producing
output. Good compilers generally warn you if you write, as a
statement, an expression that has *no* side-effects:

i + 12;

since it makes no sense to compute a value and then throw it away
if you are not also doing *something* else.
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
May 2 '06 #15
mdh

Chris Torek wrote:

Parentheses affect the "binding" of various operators.
I like this notion.

By my count, then, the compiler has 7 things ("eggs") flying through
the air all at once in this expression:

The vision of eggs flying around is no indelibly seared into my
psyche!! :-)

Chris, thank you for that wonderfully erudite explanation. It goes into
my "C answer file".

Thanks again

May 3 '06 #16
mdh
Chris Torek wrote:
Parentheses affect the "binding" of various operators.

I like this notion. By my count, then, the compiler has 7 things ("eggs") flying through
the air all at once in this expression:


The vision of eggs flying around is now indelibly seared into my
psyche!! :-)

Chris, thank you for that wonderfully erudite explanation. It goes into

my "C answer file".
Thanks again

May 3 '06 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Penn Markham | last post by:
Hello all, I am writing a script where I need to use the system() function to call htpasswd. I can do this just fine on the command line...works great (see attached file, test.php). When my...
1
by: Hohn Upshew | last post by:
I have a function for rating the clients depending on their quantity which works perfectly. My only problem is that my second function called GetSize is not recognized, and i need it in order to...
20
by: Brian Tkatch | last post by:
An ORDER BY a simple-integer inside a FUNCTION, results in SQL0440N, unless the FUNCTION expects an INTEGER as its parameter. For example: DECLARE GLOBAL TEMPORARY TABLE A(A CHAR(1)) INSERT INTO...
21
by: dragoncoder | last post by:
Consider the following code. #include <stdio.h> int main() { int i =1; printf("%d ,%d ,%d\n",i,++i,i++); return 0; }
3
by: Zongjun Qi | last post by:
Hey, In the book <Effective C++>, the author provides an example to prove why we need "pass by reference". I redoed the example, and found something interesting. The codes are:...
0
debasisdas
by: debasisdas | last post by:
CUME_DIST:- ============= THIS FUNCTION CALCULATES THE RATIO OF THE NUMBER OF ROWS THAT HAVE A LESSER OR EQUAL RANKING TO THE TOTAL NO OF ROWS IN THE PARTITION. PERCENT_RANK:-THIS FUNCTION...
0
debasisdas
by: debasisdas | last post by:
REPORTING FUNCTIONS ALLOW THE EXECUTION OF VARIOUS AGGREGATE FUNCTIONS AGAINST A RESULT SET.UNLIKE WINDOWING FUNCTIONS THESE CAN'T SPECIFY LOCALISED WINDOWS AND THUS GENERATE THE SAME RESULT FOR EACH...
0
debasisdas
by: debasisdas | last post by:
WINDOWING FUNCTION:- ==================== ORACLE'S WINDOWING FUNCTIONS ALLOW AGGERGATES TO BE CALCULATED FOR EACH ROW IN A RESULT SET BASED ON A SPECIFIED WINDOW.THE AGGREGATION WINDOW CAN BE...
2
by: mdock | last post by:
Hello, I have a javascript grid on my ASP page which displays information about the history of specific units produced in our manufacturing facility. One of the results is the order number on...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.