Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

คุณจะแสดงการแทนค่าหน่วยความจำของตัวแปร C อย่างไร?


ที่นี่เราจะดูวิธีการพิมพ์การแสดงหน่วยความจำของตัวแปร C ที่นี่เราจะแสดงจำนวนเต็ม ทุ่น และตัวชี้

เพื่อแก้ปัญหานี้ เราต้องทำตามขั้นตอนเหล่านี้ -

  • รับที่อยู่และขนาดของตัวแปร
  • พิมพ์ที่อยู่ไปยังตัวชี้อักขระเพื่อรับที่อยู่ไบต์
  • ตอนนี้วนสำหรับขนาดของตัวแปรและพิมพ์ค่าของตัวชี้แบบพิมพ์

ตัวอย่าง

#include <stdio.h>
typedef unsigned char *byte_pointer; //create byte pointer using char*
void disp_bytes(byte_pointer ptr, int len) {
    //this will take byte pointer, and print memory content
   int i;
   for (i = 0; i < len; i++)
      printf(" %.2x", ptr[i]);
   printf("\n");
}
void disp_int(int x) {
   disp_bytes((byte_pointer) &x, sizeof(int));
}
void disp_float(float x) {
   disp_bytes((byte_pointer) &x, sizeof(float));
}
void disp_pointer(void *x) {
   disp_bytes((byte_pointer) &x, sizeof(void *));
}
main() {
   int i = 5;
   float f = 2.0;
   int *p = &i;
   disp_int(i);
   disp_float(f);
   disp_pointer(p);
   disp_int(i);
}

ผลลัพธ์

05 00 00 00
00 00 00 40
3c fe 22 00 00 00 00 00
05 00 00 00