public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: arijitg@uci.edu
To: gcc-help@gcc.gnu.org
Subject: Bamboozled by long long
Date: Fri, 19 Jul 2002 11:17:00 -0000	[thread overview]
Message-ID: <1027102641.smmsdV1.1.2@smtp.uci.edu> (raw)

 I have the following 2 lines in a program

 unsigned long long k=1;
 unsigned int i = 4;

 printf("The values are i: %d, , k: %lX, i+k: %lX \n", i,k , i+k);
 k = k + i;
 printf("The values are i: %d, , k: %lX, i+k: %lX \n", i,k , i+k);

I get the foll. outputs:

The values are i: 4, , k: 0, i+k: 1
The values are i: 4, , k: 0, i+k: 5

Note that (i+k) is showing k's current value, yet k is always showing 
0.

Any idea please?


             reply	other threads:[~2002-07-19 18:17 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-19 11:17 arijitg [this message]
2002-07-19 12:16 ` John Love-Jensen
2002-07-19 12:29   ` Gokhan Kisacikoglu
2002-07-19 14:22   ` Leo Przybylski
2002-07-19 13:11 arijitg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1027102641.smmsdV1.1.2@smtp.uci.edu \
    --to=arijitg@uci.edu \
    --cc=gcc-help@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).