Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
#include <stdio.h>
main()
{
int c;
while (1) {
c = getchar();
printf("%02x ", c);
}
}