Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi,
ich habe folgende variable: unsigned long bla = 0xFFFFFFFF;
und möchte die gerne auch so ausgeben wie sie im Code steht, wie mach ich das?
printf ("%08lx", deine_variable);
[cpp] unsigned long bla = 0xFFFFFFFF; cout << hex << bla << endl; [/cpp]