Hi,
is there any way to convert an integer to its binary value?
like dec2bin(5) = 101 ?
Hi,
is there any way to convert an integer to its binary value?
like dec2bin(5) = 101 ?
NtoC( 5, 2 ) --> '101'
Doesn't work for me
msginfo( NtoC( 5, 2 )) ==> '5'
is there something I need to configure?
Works for me with xHarbour and linking with ct.lib
Rao,
thanks a lot! I've found the problem: There was a function NtoC implemented in my program which had overwritten the original function!