Bonjour,
Quelqu'un pourrait-il m'aider a convertir ces qq lignes en pascal vers turbo c ?
Type str2 = string[2];
var adresse, donnees: byte;
ch : char;
function cbhex (b: byte): str2;
const hexsigns: array [0..15] of char ='0123456789ABCDEF';
begin
cbhex := hexsigns [b shr 4] + hexsigns [b and $0F]
end;
Merci d'avance, JM