HEX2BIN.C
上传用户:yeshiping1
上传日期:2007-01-06
资源大小:29k
文件大小:0k
源码类别:

磁盘编程

开发平台:

Others

  1. /*
  2.  * hex2bin - a simple hex to binary converter
  3.  */
  4. #include <stdio.h>
  5. main()
  6. {
  7.   int c;
  8. #ifdef MSDOS
  9.   setmode(stdout,O_BINARY);
  10. #endif
  11.   while (scanf("%x", &c) == 1)
  12.     putchar(c);
  13.   exit(0);
  14. }