Memory in C (for better understanding) || video 21 || normie coder

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ม.ค. 2025

ความคิดเห็น • 1

  • @danknormie2276
    @danknormie2276  23 วันที่ผ่านมา

    //memory : memory is an array of bytes in ram (street)
    //memory block: its single byte in the memory (house)
    //memory address: its teh address of the memory block(house address)
    #include
    int main(){
    double a = 'X';
    double b[3];
    printf("%d bytes
    ",sizeof(a));
    printf("%d bytes
    ",sizeof(b));
    printf("%p
    ",&a);
    printf("%p
    ",&b);
    return 0;
    }