Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

MarkM's scratchpad

by MarkM (Curate)
on Jun 01, 2004 at 19:52 UTC ( [id://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?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-03-28 11:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found