Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in C only
Search
Advanced Search
Forums
Product Launch
Updates
Today's Posts
Member List
Calendar
Home
Forum
Topic
C
memory
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
arunraj2002in
New Member
Join Date:
Jun 2007
Posts:
22
#1
memory
Aug 18 '07, 10:07 AM
Hi All,
[CODE=c]int x;
scanf("%x",&x);
printf("%d",x);[/CODE]
If user gives the i/p as FFFFFF00 what is the o/p?
JosAH
Recognized Expert
MVP
Join Date:
Mar 2007
Posts:
11453
#2
Aug 18 '07, 10:11 AM
Originally posted by
arunraj2002in
Hi All,
int x;
scanf("%x",&x);
printf("%d",x);
If user gives the i/p as FFFFFF00 what is the o/p?
If shows the decimal represenation of 0xffffff00 and it depends on the size of
the ints on your computer. Why don't you give it a try?
kind regards,
Jos
Comment
Post
Cancel
arunraj2002in
New Member
Join Date:
Jun 2007
Posts:
22
#3
Aug 18 '07, 10:31 AM
Originally posted by
JosAH
If shows the decimal represenation of 0xffffff00 and it depends on the size of
the ints on your computer. Why don't you give it a try?
kind regards,
Jos
Here the output is -256.. i don't understand why??
Comment
Post
Cancel
arunraj2002in
New Member
Join Date:
Jun 2007
Posts:
22
#4
Aug 18 '07, 10:32 AM
Originally posted by
arunraj2002in
Here the output is -256.. i don't understand why??
for input as 'ffffffff' the output is -1.. thats fine but why -256 for ffffff00
Comment
Post
Cancel
JosAH
Recognized Expert
MVP
Join Date:
Mar 2007
Posts:
11453
#5
Aug 18 '07, 10:51 AM
Originally posted by
arunraj2002in
for input as 'ffffffff' the output is -1.. thats fine but why -256 for ffffff00
It's twos complement notation: if ffffffff equals -1, then fffffffe equals -2, then
ffffffd equals -3, then ... then ffffff01 equals -255, then ffffff00 equals -256.
kind regards,
Jos
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment