Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

MarkM's scratchpad

by MarkM (Curate)
on Jun 01, 2004 at 19:52 UTC ( #358487=scratchpad: print w/replies, xml ) Need Help??

$ cat aa.c #include <stdio.h> int main () { char c = 'A'; char hexchars[] = "0123456789ABCDEF"; char c_as_hex[] = {hexchars[c >> 4], hexchars[c & 0xF], '\0'}; printf("%s\n", c_as_hex); return 0; } $ gcc -o aa aa.c $ ./aa 41
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2023-03-31 07:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (75 votes). Check out past polls.

    Notices?