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

Поделиться
HTML-код
  • Опубликовано: 31 дек 2024

Комментарии • 1

  • @danknormie2276
    @danknormie2276  6 дней назад

    //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;
    }