Contact: aviboots(AT)netvision.net.il
40,866 questions
53,271 answers
573 users
#include <stdio.h> struct Test { float book_price; int book_tax; }; int main() { struct Test arr[] = { { 4, 6 }, { 1, 7 }, { 11, 5 }, { 8, 6 }, { 2, 3 }, { 7, 5 } }; printf("%i", sizeof arr / sizeof arr[0]); return 0; } /* run: 6 */