Почему sizeof выводит 12 байтов в следующем массиве строк ? Язык Си
Почему sizeof выводит 12 байтов в следующем массиве строк ? Язык Си.
#include<stdio.h>
void main (void)
{
const char* states[] = {"Moscow", "New-York" ,"Kiev"};
printf("\r\n%zu", sizeof (states));
return;
}