Home » U++ TheIDE » U++ TheIDE: Packages » vsprintf() doesn't support "%I64u" format in Win32 platform?
Re: vsprintf() doesn't support "%I64u" format in Win32 platform? [message #14472 is a reply to message #14404] |
Wed, 27 February 2008 06:04  |
HenryXin
Messages: 10 Registered: February 2008
|
Promising Member |
|
|
Append another code:
#include "stdio.h"
int main(int argc, const char *argv[])
{
printf("%s\n", "Heee");
printf("%Lu, %s\n", (unsigned long long)1234567890, "Heee");
printf("%Lu,%Lu,%Lu,%s\n", (unsigned long long)12345, (unsigned long long)9871111, (unsigned long long)0x0000, "Starting");
return 0;
}
the result:
Heee
1234567890, (null)
12345,0,9871111,(null)
<--- Finished in (0:00.03), exitcode: 0 --->
|
|
|
Goto Forum:
Current Time: Sun May 11 22:41:57 CEST 2025
Total time taken to generate the page: 0.00854 seconds
|