File: displaybytes.c

package info (click to toggle)
sprng 2.0a-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,308 kB
  • sloc: ansic: 30,353; fortran: 1,618; makefile: 575; cpp: 58; sh: 5
file content (14 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>


main()
{
  int c;
  
  while( (c=getchar())!=EOF )
    printf("%x ",c);
  
  putchar('\n');
  

}