Contents

조회 수 9724 댓글 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. [c++] WinSock2.0 채팅 프로그램 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views9409
    Read More
  2. [c] 베지어 곡선(Bézier curve) 알고리즘

    Date2013.04.23 CategoryDevelop Byhooni Views9421
    Read More
  3. [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI)

    Date2013.04.23 CategoryDevelop Byhooni Views9436
    Read More
  4. [jsp] HelloServlet 출력문

    Date2003.04.23 CategoryDevelop Byhooni Views9445
    Read More
  5. [c++] mfc로 만든 현재 디렉토리 읽어오기/세팅하기 (GetCurrentDirectory/SetCurrentDirectory)

    Date2013.04.23 CategoryDevelop Byhooni Views9452
    Read More
  6. [c] 프로그래밍 ppt, 스킬업 (비트 수업자료)

    Date2003.04.23 CategoryDevelop Byhooni Views9455
    Read More
  7. [c] 반올림 함수!! ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views9460
    Read More
  8. [js] 주민번호 생성기..

    Date2003.04.23 CategoryDevelop Byhooni Views9471
    Read More
  9. [c] 문자열 처리(문자열 자르기)

    Date2003.04.23 CategoryDevelop Byhooni Views9488
    Read More
  10. [c] 간단한 소켓 프로그래밍 샘플

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

    Date2013.04.23 CategoryDevelop Byhooni Views9506
    Read More
  12. [jsp][php] 간단한 강좌 자료..

    Date2003.04.23 CategoryDevelop Byhooni Views9520
    Read More
Board Pagination Prev 1 ... 43 44 45 46 47 48 49 50 51 52 ... 99 Next
/ 99