DEBSOURCES
Skip Quicknav
sources / sprng / 2.0a-16 / EXAMPLES / displaybytes.c
1234567891011121314
#include <stdio.h> main() { int c; while( (c=getchar())!=EOF ) printf("%x ",c); putchar('\n'); }