473,378 Members | 1,333 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,378 software developers and data experts.

unsigned long long + int

When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed? What is the
type of the resulting expression? What occurs if the addition overflows
or underflows?

Thanks,

-Peter
Nov 14 '05 #1
12 5394
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?
The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.
What is the
type of the resulting expression?
'unsigned long long'
What occurs if the addition overflows
or underflows?


Undefined.

-Mike
Nov 14 '05 #2

"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:WI****************@newsread3.news.pas.earthli nk.net...
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?


The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.
What is the
type of the resulting expression?


'unsigned long long'
What occurs if the addition overflows
or underflows?


Undefined.


Sorry, this is not correct. Upon overflow, unsigned integer
types will 'wrap' to zero. The undefined behavior occurs with
signed integer types.

-Mike
Nov 14 '05 #3
Mike Wahler wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?

The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.


Thanks! How does this promotion occur? Is it guaranteed to convert the
value modulo ULLONG_MAX + 1 (like I hope), or is it an implementation
defined thing?

[...]

-Peter

--
Pull out a splinter to reply.
Nov 14 '05 #4
kal
Peter Ammon <pe*********@rocketmail.com> wrote in message news:<cj**********@news.apple.com>...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed? What is the
type of the resulting expression? What occurs if the addition overflows
or underflows?


Try it on your machine/compiler and let us know.

On of these days I am going to figure out what the following means.

6.3.1.8 Usual arithmetic conversions

1 Many operators that expect operands of arithmetic type cause
conversions and yield result types in a similar way. The purpose
is to determine a common real type for the operands and result.
For the specified operands, each operand is converted, without
change of type domain, to a type whose corresponding real type
is the common real type. Unless explicitly stated otherwise, the
common real type is also the corresponding real type of the result,
whose type domain is the type domain of the operands if they are
the same, and complex otherwise. This pattern is called the usual
arithmetic conversions:

First, if the corresponding real type of either operand is long
double, the other operand is converted, without change of type
domain, to a type whose corresponding real type is long double.

Otherwise, if the corresponding real type of either operand is
double, the other operand is converted, without change of type
domain, to a type whose corresponding real type is double.

Otherwise, if the corresponding real type of either operand is
float, the other operand is converted, without change of type
domain, to a type whose corresponding real type is float.

Otherwise, the integer promotions are performed on both operands.
Then the following rules are applied to the promoted operands:

If both operands have the same type, then no further
conversion is needed.

Otherwise, if both operands have signed integer types or
both have unsigned integer types, the operand with the type
of lesser integer conversion rank is converted to the type
of the operand with greater rank.

Otherwise, if the operand that has unsigned integer type has
rank greater or equal to the rank of the type of the other
operand, then the operand with signed integer type is
converted to the type of the operand with unsigned integer
type.

Otherwise, if the type of the operand with signed integer
type can represent all of the values of the type of the
operand with unsigned integer type, then the operand with
unsigned integer type is converted to the type of the
operand with signed integer type.

Otherwise, both operands are converted to the unsigned
integer type corresponding to the type of the operand
with signed integer type.
Nov 14 '05 #5
Peter Ammon wrote:
Mike Wahler wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
When I add an unsigned long long and an int, what type do each
of the values get promoted to before the addition is performed?


The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.


Thanks! How does this promotion occur? Is it guaranteed to
convert the value modulo ULLONG_MAX + 1 (like I hope), or is it
an implementation defined thing?


Yes, guaranteed.

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

Nov 14 '05 #6
Mike Wahler <mk******@mkwahler.net> wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?
The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.

^^^^^^^^ -> converted

--
Stan Tobias
sed 's/[A-Z]//g' to email
Nov 14 '05 #7
kal
CBFalconer <cb********@yahoo.com> wrote in message news:<41***************@yahoo.com>...
Peter Ammon wrote:

Mike Wahler wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message

When I add an unsigned long long and an int, what type do each
of the values get promoted to before the addition is performed?

The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.


Thanks! How does this promotion occur? Is it guaranteed to
convert the value modulo ULLONG_MAX + 1 (like I hope), or is it
an implementation defined thing?


Yes, guaranteed.


Seems so. But I still can't figure out what the standard says.

Say, while converting from long to unsigned long where the value
of long is negative, does this mean the value of unsigned long
is calculated as ULONG_MAX + 1 + <value of long> ?

6.3.1.3 Signed and unsigned integers

2 Otherwise, if the new type is unsigned, the value is converted
by repeatedly adding or subtracting one more than the maximum
value that can be represented in the new type until the value
is in the range of the new type.
Nov 14 '05 #8
kal wrote:

CBFalconer <cb********@yahoo.com> wrote in message news:<41***************@yahoo.com>...
Peter Ammon wrote:

Mike Wahler wrote:
> "Peter Ammon" <pe*********@rocketmail.com> wrote in message
>
>> When I add an unsigned long long and an int, what type do each
>> of the values get promoted to before the addition is performed?
>
> The 'unsigned long long' object is not promoted at all.
> The 'int' object is promoted to 'unsigned long long'.

Thanks! How does this promotion occur? Is it guaranteed to
convert the value modulo ULLONG_MAX + 1 (like I hope), or is it
an implementation defined thing?


Yes, guaranteed.


Seems so. But I still can't figure out what the standard says.

Say, while converting from long to unsigned long where the value
of long is negative, does this mean the value of unsigned long
is calculated as ULONG_MAX + 1 + <value of long> ?

6.3.1.3 Signed and unsigned integers

2 Otherwise, if the new type is unsigned, the value is converted
by repeatedly adding or subtracting one more than the maximum
value that can be represented in the new type until the value
is in the range of the new type.


In most cases it means modulo arithmetic. The verbiage is
necessary to cater to the various allowable integral arithmetic
forms, 2s complement, 1s complement, sign-magnitude.

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Nov 14 '05 #9
S.Tobias wrote:
Mike Wahler <mk******@mkwahler.net> wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?


The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.


^^^^^^^^ -> converted


Objects are not converted, values are. Conversion to higher rank is
called promotion. Like in the Army. :=)
--
Joe Wright mailto:jo********@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #10
Joe Wright <jo********@comcast.net> wrote:
S.Tobias wrote:
The 'int' object is promoted to 'unsigned long long'. ^^^^^^^^ -> converted

Objects are not converted, values are. Conversion to higher rank is
called promotion. Like in the Army. :=)


Are you sure (about integer promotions, not the Army :-) )?
I thought the word "promotions" was reserved only for _automatic_
conversions (rank_less_than_int)->(int); or (float)->(double)
in argument promotions.

--
Stan Tobias
sed 's/[A-Z]//g' to email
Nov 14 '05 #11
In <Y4********************@comcast.com> Joe Wright <jo********@comcast.net> writes:
S.Tobias wrote:
Mike Wahler <mk******@mkwahler.net> wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...

When I add an unsigned long long and an int, what type do each of the
values get promoted to before the addition is performed?
The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.


^^^^^^^^ -> converted


Objects are not converted, values are.


Entirely gratuitous nit picking: the purpose of objects is to hold values.
Conversion to higher rank is called promotion.
Chapter and verse.
Like in the Army. :=)


In C, there are four strictly delimited categories of automatic
conversions: the integral promotions, the default argument promotions,
the usual arithmetic conversions and the assignment operator conversions.
To avoid misunderstanding, use the word "promotion" only in one of the
two contexts where the standard uses it, even if the usual arithmetic
conversions are often army-like promotions...

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #12
Dan Pop wrote:
In <Y4********************@comcast.com> Joe Wright <jo********@comcast.net> writes:

S.Tobias wrote:

Mike Wahler <mk******@mkwahler.net> wrote:
"Peter Ammon" <pe*********@rocketmail.com> wrote in message
news:cj**********@news.apple.com...
>When I add an unsigned long long and an int, what type do each of the
>values get promoted to before the addition is performed?
The 'unsigned long long' object is not promoted at all.
The 'int' object is promoted to 'unsigned long long'.

^^^^^^^^ -> converted


Objects are not converted, values are.

Entirely gratuitous nit picking: the purpose of objects is to hold values.

Conversion to higher rank is called promotion.

Chapter and verse.

Like in the Army. :=)

In C, there are four strictly delimited categories of automatic
conversions: the integral promotions, the default argument promotions,
the usual arithmetic conversions and the assignment operator conversions.
To avoid misunderstanding, use the word "promotion" only in one of the
two contexts where the standard uses it, even if the usual arithmetic
conversions are often army-like promotions...

Dan


What got my attention first was Stan's need to correct Mike's use of
'promoted' to 'converted'. That was gratuitous I think. Then, in
context I see Mike promoting objects. That is simply wrong and that
'the purpose of objects is to hold values' does not change the fact
that objects are not converted or promoted. Values are.

I do appreciate your advice. Thank you.
--
Joe Wright mailto:jo********@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #13

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

Similar topics

7
by: William Payne | last post by:
Hello, I have a variable of type unsigned long. It has a number of bits set (with set I mean they equal one). I need to determine those bits and their position and create new numbers from them. For...
34
by: Andy | last post by:
Hi, Are 1 through 4 defined behaviors in C? unsigned short i; unsigned long li; /* 32-bit wide */ 1. i = 65535 + 3; 2. i = 1 - 3; 3. li = (unsigned long)0xFFFFFFFF + 3; 4. li = 1...
25
by: amit | last post by:
Hi, What will happen in following scenario.. long a = -2; longlong b = a long c; c = *(ulonglong *)&b; b = c; also when
16
by: TTroy | last post by:
Hello, I'm relatively new to C and have gone through more than 4 books on it. None mentioned anything about integral promotion, arithmetic conversion, value preserving and unsigned preserving. ...
9
by: luke | last post by:
Hi everybody, please, can someone explain me this behaviour. I have the following piece of code: long long ll; unsigned int i = 2; ll = -1 * i; printf("%lld\n", ll);
3
by: tutush | last post by:
Hi there, I have problem with importing my C++ code to C#. The c++ looks like these extern _declspec(dllexport) const char* SendAndReceiveBufferedWrp(__int64 hConnection, const char*...
14
by: moumita | last post by:
Hi All, I need to convert 4 bytes to an unsigned long. Suppose I have one array like unsigned char buf.I need to convert these 4 bytes into a single unsigned long. Is the following piece of code...
7
by: somenath | last post by:
Hi All, I am trying to undestand "Type Conversions" from K&R book.I am not able to understand the bellow mentioned text "Conversion rules are more complicated when unsigned operands are...
6
by: Kislay | last post by:
Consider the following code snippet unsigned int i=10; int j= - 2; // minus 2 if(i>j) cout<<"i is greater"; else cout<<"j is greater"; Since i is unsigned , j is greater . I know why , but...
13
by: Martin Wells | last post by:
I commonly use the likes of -1 for max unsigned values, or something like -7 to get 6 away from the max value; sort of like: unsigned x = ... if (-7 == x) puts("x is 6 away from its maximum");...
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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?

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.