#include int main() { char first_initial[] = {[0] = 'J', [2] = 'M', [8] = 'S'}; int size = sizeof(first_initial) / sizeof(char); printf("%d\n", size); return 0; }