473,402 Members | 2,064 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,402 software developers and data experts.

Typecast of one argument to printf impacts other ???

When the below program is compiled and executed,

#include <stdio.h>

#define MASK 0xFFFFFFULL

main() {
unsigned long long a;
unsigned long b, c;

a = 0x12345678ULL;
b = a & MASK;
c = 0x00345678UL;

printf("%d %d\n", sizeof(unsigned long), sizeof(unsigned long
long));
printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
a & MASK, a & MASK, b, b, c, c);

}

the result from a BigEndian machine is

4 8
0x0 3430008 0x0 3430008 0x345678 3430008

Surprisingly, the result of 'a & MASK' and 'b' are 0x0, when 0x%x
format is used.

And the result from a Little Endian machine is

4 8
0x345678 0 0x345678 0 0x345678 3430008

Again more surprisingly, the results are 0 when %lu is used. Why these
unexpected results ?

Also, when the printf is changed like this,

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), a & MASK, b, b, c, c);

the result is

0x345678 0 0x345678 3430008 0x345678 3430008

in a Big Endian machine and

0x345678 3430008 0x0 3430008 0x345678 3430008

in a little endian.

And with the below

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), (unsigned long)(a & MASK), b, b,
c, c);

the results are as expected

0x345678 3430008 0x345678 3430008 0x345678 3430008

in both the machines.

How does typecasting of one argument affect printed values of others ?
Or is there anyother reason behind it and what I see is a misconception
of some hidden fact ?

Nov 15 '05 #1
3 2000

na******@yahoo.co.in wrote:
When the below program is compiled and executed,

#include <stdio.h>

#define MASK 0xFFFFFFULL

main() {
unsigned long long a;
unsigned long b, c;

a = 0x12345678ULL;
b = a & MASK;
c = 0x00345678UL;

printf("%d %d\n", sizeof(unsigned long), sizeof(unsigned long
long));
printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
a & MASK, a & MASK, b, b, c, c);
For the first vararg parameter, you're passing an unsigned long long
when the corresponding format specifier, %x, expects an unsigned int.
For the second vararg parameter, you're passing an unsigned long long
when %lu expects an unsigned long. Mismatching format specifiers with
the parameter types is *undefined behavior*. The compiler is free to do
ANYTHING IT WISHES.

However, I suppose you want a practical, "what is most-likely happening
behind the scenes" answer. Okay, here is the most-likely reason:

In a typical implementation, when you call printf, the parameters are
pushed onto the stack from right to left, and so, your stack looks like
this:

(separated into 4-byte groups -- big endian)
00345678 c -- bottom of stack
00345678 c
00345678 b
00345678 b
00345678 a & MASK (least significant 4 bytes)
00000000 (most significant 4 bytes)
00345678 a & MASK
00000000
ptr_to_format_string -- top of stack (popped first)

And so, printf pops off the pointer to the format string and starts
parsing the format string. It encounters an %x, which means to display
the *unsigned int* parameter in hexadecimal format. And so, since an
unsigned int is likely to be 4 bytes on your platform, 4 bytes are
popped off the stack, and so 00000000 is popped and represented in
hexadecimal. Then %lu is encountered and since it expects an unsigned
long, which is 4 bytes on your platform, 4 bytes are popped, which is
00345678 in hex, or 3430008 in decimal. etc.

Solution: use the right format specifiers: %llx and %llu
}

the result from a BigEndian machine is

4 8
0x0 3430008 0x0 3430008 0x345678 3430008

Surprisingly, the result of 'a & MASK' and 'b' are 0x0, when 0x%x
format is used.

And the result from a Little Endian machine is

4 8
0x345678 0 0x345678 0 0x345678 3430008

Again more surprisingly, the results are 0 when %lu is used. Why these
unexpected results ?

Also, when the printf is changed like this,

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), a & MASK, b, b, c, c);

the result is

0x345678 0 0x345678 3430008 0x345678 3430008

in a Big Endian machine and

0x345678 3430008 0x0 3430008 0x345678 3430008

in a little endian.

And with the below

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), (unsigned long)(a & MASK), b, b,
c, c);

the results are as expected

0x345678 3430008 0x345678 3430008 0x345678 3430008

in both the machines.

How does typecasting of one argument affect printed values of others ?
Or is there anyother reason behind it and what I see is a misconception
of some hidden fact ?


Nov 15 '05 #2
On 15 Oct 2005 05:19:02 -0700, na******@yahoo.co.in wrote:
When the below program is compiled and executed,

#include <stdio.h>

#define MASK 0xFFFFFFULL

main() {
unsigned long long a;
unsigned long b, c;

a = 0x12345678ULL;
b = a & MASK;
c = 0x00345678UL;

printf("%d %d\n", sizeof(unsigned long), sizeof(unsigned long
long));
sizeof evaluates to a size_t which is an unsigned integer of some
type. %d requires an int so you have potential undefined behavior
here. A common recommendation is to use %lu and cast the sizeof to
unsigned long.
printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
a & MASK, a & MASK, b, b, c, c);
Here have more undefined behavior.

%x requires an unsigned int. a & MASK is an unsigned long long.

%lu requires an unsigned long. a & MASK is still an unsigned long
long.

%x requires an unsigned int. b is an unsigned long. So is c.

}

the result from a BigEndian machine is

4 8
0x0 3430008 0x0 3430008 0x345678 3430008

Surprisingly, the result of 'a & MASK' and 'b' are 0x0, when 0x%x
format is used.
You cannot lie to printf and expect things to work, especially since
you know that unsigned long and unsigned long long have different
sizes.

And the result from a Little Endian machine is

4 8
0x345678 0 0x345678 0 0x345678 3430008

Again more surprisingly, the results are 0 when %lu is used. Why these
unexpected results ?
You cannot lie to printf and expect things to work, especially since
you know that unsigned long and unsigned long long have different
sizes.

Also, when the printf is changed like this,

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), a & MASK, b, b, c, c);

the result is

0x345678 0 0x345678 3430008 0x345678 3430008

in a Big Endian machine and

0x345678 3430008 0x0 3430008 0x345678 3430008

in a little endian.

And with the below

printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
(unsigned long)(a & MASK), (unsigned long)(a & MASK), b, b,
c, c);

the results are as expected

0x345678 3430008 0x345678 3430008 0x345678 3430008

in both the machines.

How does typecasting of one argument affect printed values of others ?
Or is there anyother reason behind it and what I see is a misconception
of some hidden fact ?


Welcome to the wonderful world of undefined behavior. One
manifestation is "do something to really confuse the user."
<<Remove the del for email>>
Nov 15 '05 #3
na******@yahoo.co.in wrote:
When the below program is compiled and executed,

/* Your program is hopelessly broken. Learn to use specifiers that
match your data types. Also learn that sizeof() returns an unsigned
value. Note the changes below. As a style isssue, using tabs for
output meant to be human-readable is a mistake. All of your
questions are related to your errors. */
#include <stdio.h>

#define MASK 0xFFFFFFULL

int main(void)
{
unsigned long long a;
unsigned long b, c;

a = 0x12345678ULL;
b = a & MASK;
c = 0x00345678UL;

printf("%d %d\n", (int) sizeof(unsigned long),
(int) sizeof(unsigned long long));
printf("%#llx %llu; %#lx %lu; %#lx %lu\n", a & MASK, a & MASK, b,
b, c, c);
return 0;

}
[output]

4 8
0x345678 3430008; 0x345678 3430008; 0x345678 3430008

#include <stdio.h>

#define MASK 0xFFFFFFULL

main() {
unsigned long long a;
unsigned long b, c;

a = 0x12345678ULL;
b = a & MASK;
c = 0x00345678UL;

printf("%d %d\n", sizeof(unsigned long), sizeof(unsigned long
long));
printf("0x%x %lu \t 0x%x %lu \t 0x%x %lu \n",
a & MASK, a & MASK, b, b, c, c);

}

Nov 15 '05 #4

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

Similar topics

5
by: Lars Plessmann | last post by:
I have a problem with typecast methods. Here is a setter of an object: function setKind($kind) { if (is_int((int)$kind) and (strlen($kind)<=6)) { $this->kind = $kind; return true;
9
by: Venkat | last post by:
Hi All, I want to typecast int to std::string how can i do it. Here is the sample code. int NewList; //Fill the NewList with integers values. .......
1
by: masood.iqbal | last post by:
I have a few questions regarding overloaded typecast operators and copy constructors that I would like an answer for. Thanks in advance. Masood (1) In some examples that I have seen...
8
by: Trishia Rose | last post by:
this is something ive always wondered, does it take cpu time at run time to typecast or just at compile time? for example consider the two little bits of code: int a = 5; int b = a; and: ...
4
by: Michael Mair | last post by:
Hi there, actually, I have posted the same question in g.g.help. As there were no answers, I am still not sure whether this is a bug or only something open to the compiler that is seemingly...
3
by: Ray Mitchell | last post by:
Hello, I have an array list whose elements are the following types: float int float int ....etc.
5
by: shaanxxx | last post by:
i have statements printf("%f",(double)1); /* works fine although i have sent %f for double */ printf("%c",(int)64); /* works fine although i have sent %c for int */ Need your comment on...
7
by: bowlderster | last post by:
Hello,all. I want to get the array size in a function, and the array is an argument of the function. I try the following code. /*************************************** */ #include<stdio.h>...
8
by: A. Anderson | last post by:
Howdy everyone, I'm experiencing a problem with a program that I'm developing. Take a look at this stack report from GDB - #0 0xb7d782a3 in strlen () from /lib/tls/i686/cmov/libc.so.6 #1 ...
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: 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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.