I'm so confused with sprintf that a funny problem with different platfrom.
Code :
int main ()
{
char sql[1024];
uint32_t app_id = 32;
uint64_t task_id = 64;
sprintf(sql, "%u, %u", task_id, app_id);
printf ("%s
", sql);
return 0;
}
The result in console (MSVC2010 debug/release): 64, 0
But the same code in console(CentOS64 gcc4.4.6): 64, 32
Any guy will help me, tks!
-------------updated--------------------------
Thanks guys. I have read this article: sprintf for unsigned _int64
Actually, PRIu64
in "inttypes.h"
defined: I64u
which is not supported on windows. So I can write like this:
sprintf(sql, "%I64u, %I32u", task_id, app_id);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…