Starting in 1996, Alexa Internet has been donating their crawl data to the Internet Archive. Flowing in every day, these data are added to the Wayback Machine after an embargo period.
Starting in 1996, Alexa Internet has been donating their crawl data to the Internet Archive. Flowing in every day, these data are added to the Wayback Machine after an embargo period.
TIMESTAMPS
The Wayback Machine - https://web.archive.org/web/20170204182809/http://c-faq.com:80/aryptr/arraynels.html
comp.lang.c FAQ list
·
Question 6.23
Q:
I want to know how many elements are in an array,
but sizeof yields the size in bytes.
A:
Simply divide the size of the entire array by the size of one element:
int array[] = {1, 2, 3};
int narray = sizeof(array) / sizeof(array[0]);