#include int main(void) { char *a = "12345"; int i; for (i=0; i < 6; i++) printf("%.2x ", (unsigned int) a[i]); return 0; }