#include <stdio.h> int main(){ int c; while ((c = fgetc(stdin)) != EOF) { printf("%#x ", c); } return 0;}
abc
0x61 0x62 0x63
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!