编写一个C程序来显示C变量的内存表示形式, 例如int, float, pointer等。
算法:
获取变量的地址和大小。将地址类型转换为char指针。现在循环查找变量的大小, 并在类型转换的指针上打印该值。
【如何显示C变量的内存表示形式()】程序:
#include <
stdio.h>
typedef unsigned char *byte_pointer;
/*show bytes takes byte pointer as an argument
and prints memory contents from byte_pointer
to byte_pointer + len */
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 *));
}/* Drover program to test above functions */
int main()
{
int i = 1;
float f = 1.0;
int *p = &
i;
show_float(f);
show_int(i);
show_pointer(p);
show_int(i);
getchar ();
return 0;
}
推荐阅读
- 惠普研发实验室采访经验|S7(有经验的)
- 如何在不使用循环的情况下打印1到100之间的数字()
- Python如何在Kivy中使用多个UX小部件()
- 如何编写修改链表头指针的C函数()
- 如何在Python中编写空函数-pass语句()
- 如何为你的项目编写好的SRS
- 如何使用Jupyter Notebook(终极指南)
- 如何在Java中使用Iterator()
- shell 流程控制