Contents

조회 수 8138 댓글 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. [linux] 날짜나 파일의 내용으로 검색하는 방법(find 명령 사용)

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

    Date2003.04.23 CategoryDevelop Byhooni Views8155
    Read More
  3. [c] 오류체크(CRC 체크 ) 소스

    Date2013.04.23 CategoryDevelop Byhooni Views8149
    Read More
  4. [c] 반올림 함수!! ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views8142
    Read More
  5. [c] 컴파일러 DFA구현^^ 입력 받아 실행

    Date2003.04.23 CategoryDevelop Byhooni Views8142
    Read More
  6. [c] 숫자(int, Number)를 hex코드로 변환하는 소스

    Date2013.04.23 CategoryDevelop Byhooni Views8138
    Read More
  7. [c] 레포트용으로 제출했던 여러 소스코드 모음

    Date2003.04.23 CategoryDevelop Byhooni Views8119
    Read More
  8. [c] 유닉스 프로그램에서 인수처리 해주는 getopt() 함수

    Date2013.04.23 CategoryDevelop Byhooni Views8090
    Read More
  9. [js] 셀렉트박스(select)의 옵션(option) 동적으로 추가/제거

    Date2013.04.23 CategoryDevelop Byhooni Views8080
    Read More
  10. [c] 구구단 최단라인 ㅡㅡ;

    Date2013.04.23 CategoryDevelop Byhooni Views8073
    Read More
  11. [c] 프로세스 검사하기

    Date2013.04.23 CategoryDevelop Byhooni Views8048
    Read More
  12. [c] 포인터와 함수포인터에 대해..

    Date2003.04.23 CategoryDevelop Byhooni Views8044
    Read More
Board Pagination Prev 1 ... 28 29 30 31 32 33 34 35 36 37 ... 71 Next
/ 71