Contents

조회 수 8122 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

숫자를 hex 코드로 변환

/* print input in hex */
void print_hex( int input ){
    int var, i;
    int len = 0;
    char buf[255];

    do{
        var = input % 16;
        input /= 16;

        /* try to convert ascii code */
        if( var<10 ) buf[len] = var+48;
        else buf[len] = var+55;
        len++;
    }while( input>0 ); /* bigger than 16? then try again */

    /* print reversely */
    for ( i=len; i>0; i-- ) putchar( buf[i-1] );
    putchar( '\n' );

}

int main( int argc, char** argv ){
    int input;

    printf( "input number: " );
    scanf( " %d", &input );

    /* print hex with printf */
    printf( "%x\n", input );

    /* print hex with my function */
    print_hex( input );

    return 0;

}


?

  1. [js] 스타크래프트(starcraft)..

    Date2013.04.23 CategoryDevelop Byhooni Views6641
    Read More
  2. [php] 탐색기와 같은 다이나믹 트리(xml/xsl 이용)

    Date2013.04.23 CategoryDevelop Byhooni Views7154
    Read More
  3. [c] 네트워크 보안 프로그래밍 과제 (Server,Agent,Client)

    Date2013.04.23 CategoryDevelop Byhooni Views6473
    Read More
  4. [windows] 원격 데스크탑(터미널 서비스) 포트 변경

    Date2013.04.23 CategorySystem/OS Byhooni Views16305
    Read More
  5. [switch] 시스코 스위치 관리자 암호 초기화 방법

    Date2013.04.23 CategorySystem/OS Byhooni Views17188
    Read More
  6. [switch] 시스코 카탈리스트(Cisco Catalyst) 기본 설정

    Date2013.04.23 CategorySystem/OS Byhooni Views17497
    Read More
  7. [switch] 시스코 카탈리스트(Cisco Catalyst) 2950 미러링 설정

    Date2013.04.23 CategoryDevelop Byhooni Views11392
    Read More
  8. [c] 시스템 보안 과제.. 시간(amc time) 변경

    Date2013.04.23 CategoryDevelop Byhooni Views7194
    Read More
  9. [c] 암호 알고리즘 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views8342
    Read More
  10. [c] 지폰(gphone) 소스.. 수정(암호화)

    Date2013.04.23 CategoryDevelop Byhooni Views7434
    Read More
  11. [perl] 영규가 만든 스크립트.. 하하..

    Date2013.04.23 CategorySystem/OS Byhooni Views10597
    Read More
  12. [c] 파일(int fd)에서 개행문자 단위로 읽기 by 후리자

    Date2013.04.23 CategoryDevelop Byhooni Views7152
    Read More
Board Pagination Prev 1 ... 23 24 25 26 27 28 29 30 31 32 ... 98 Next
/ 98