023 - Memory Address in C Language Programming | C Tutorials for Beginners

preview_player
Показать описание
023 - Memory Address in C Language Programming | C Tutorials for Beginners

In this video, we will be talking about the Memory Address in C Language Programming | C Tutorials for Beginners
--
// memory = an array of bytes within RAM (street)
// memory block = a single unit (byte) within memory (house), used to hold some value (person)
// memory address = the address of where a memory block is located (house address)

int a;
int b[3];

printf("%d Bytes\n", sizeof(a));
printf("%d Bytes\n", sizeof(b));

printf("%p Address\n", &a);
printf("%p Address\n", &b);
--

023 - Memory Address in C Language Programming | C Tutorials for Beginners

#c #clanguage #cprogramming
Рекомендации по теме
welcome to shbcf.ru