擴展數字的位表示

#include<stdio.h> typedef unsigned char *byte_pointer; void show_bytes(byte_pointer start, size_t len) { size_t i; for (i = 0; i < len; i++) printf("%.2x ", start[i]); printf("\n"); } int main(
相關文章
相關標籤/搜索