hi ,
we convert from int to hex by
cout << hex << int_value;

to octal
cout << oct << int_value;
to binary
cout << binary << int_value;
but i get the following error
cc0ibaaa.o(.text+0x23):conver~1.cpp: undefined reference to `binary(int)'

what is wrong?