hi. i have this code (im working with big files support in ansi c)
unsigned long int tmp,final
final=1231123123123213
tmp=final;
printf("%llu %llu \n",final,tmp);
printf("%llu \n ",tmp);
it prints
1231123123123213 0
1231123123123213
i dont get it