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