From: stefan.briesenick@csc.deutsche-leasing.de (Stefan Briesenick)
Subject: Bug: printf() in combination with long long
13 Jan 1999 18:13:00 -0800
Message-ID: <369CCEB7.E9B5E841.cygnus.gnu-win32@csc.deutsche-leasing.de>
Reply-To: sbriesen@gmx.de
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: cygwin <gnu-win32@cygnus.com>

Hello!

try this:

#include <stdlib.h>

int main(void)
{
   unsigned long long var1, var2, var2;

   var1 = 12345;
   var2 = 54321;
   var3 = 98765;

   printf("wrong: %Lu - %Lu - %Lu\n",var1,var2,var3);

   printf("right: %Lu - ",var1);
   printf("%Lu - ",var2);
   printf("%Lu\n",var3);

   return 0;
}


this program produces following Output:

wrong: 12345 - 0 - 54321
right: 12345 - 54321 - 98765

seems to be a stack-problem?

Stefan Briesenick
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
