I m using (under windows7, VS2010) a time_t
type.
So...
If I dump my variable with a simple printf("%d", myvar)
Everything is working fine.
But now, If I use a vsnprintf()
(or any code using va_start/va_end and co...)
with time_t as argument, I get wrong values !?
myprintf(">>%d %d", var1_time, var2_time);
(var1_time and var2_time are both wrong !)
我的猜测:四舍五入,不知道如何处理64条轨道!
当然,我可以使用“%”。 我怎么能够像印刷品一样行事?