#include <stdio.h>
#include <stdlib.h>

typedef unsigned char *byte_pointer;

void
show_bytes( byte_pointer start, int len )
{
        int i;

        for ( i = 0; i < len; i++ )
                printf( " %.2x", start[i] );

        printf( "\n" );
}

void
show_int( int x )
{
        show_bytes( ( byte_pointer )&x, sizeof( int ) );
}

void
show_float( float x )
{
        show_bytes( ( byte_pointer )&x, sizeof( float ) );
}

void
show_pointer( void* x )
{
        show_bytes( ( byte_pointer )&x, sizeof( void* ) );
}

void
test_show_bytes( int val )
{
        int ival = val;
        float fval = ( float )val;
        int *pval = &ival;

        show_int( ival );
        show_float( fval );
        show_pointer( pval );
}


int
main( void )
{
        test_show_bytes( 12345 );

        exit( 0 );
}

  

相关文章:

  • 2021-10-05
  • 2021-09-02
  • 2021-10-18
猜你喜欢
  • 2022-02-02
  • 2022-02-19
  • 2022-02-21
  • 2021-11-17
  • 2021-11-17
相关资源
相似解决方案