У меня есть два указателя
Код: Выделить всё
char *str1;
int *str2;
Код: Выделить всё
str1=4 bytes
str2=4 bytes
What is the concept behind this?
Источник: https://stackoverflow.com/questions/260 ... r-pointers
Код: Выделить всё
char *str1;
int *str2;
Код: Выделить всё
str1=4 bytes
str2=4 bytes