PDA

View Full Version : is ther any function which use int 8 bytes



jyoti
12th December 2006, 09:39
hi all
can u plz tell me in c++ (on window) any function which uses the int 8bytes
is there any then plz do reply as soon as possible


thanks in advance....

wysota
12th December 2006, 10:55
getchar() ? :)

Ints are 32b on 32bit machines. If you want 8bit integer, either use "unsigned char" or some wrappers over data types like quint8.

jyoti
12th December 2006, 11:30
any function for scrollbar which show 8 bytes of data instead of 4 bytes

wysota
12th December 2006, 11:45
Oh, you mean 64bit? If you mean Qt, then nope :) Scrollbars in Qt are integer based. This should be enough to hold 4E+9 values, do you need more?