#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{  
    double b[10];
    b[0]=0;
    printf("How many elements the array contains : %d\n" , sizeof(b) / sizeof(b[0]));
    return 0;
}