I am trying to use a for loop to assign values to an array in C (I'm using minGW). At first I tried doing:
double flag[5] = {0.1};
but that only assigned the first variable in the array to 0.1. Then I tried doing a for loop to assign each individually. The reason why I don't want to hard code it is because I want the size of the flag variable to be flexible to the user's input. My current code looks like this:
    int cnt;
    double flag[5];
    for (cnt = 0; cnt < sizeof(flag); cnt++) {
        printf("sizeof(flag) is %d\n",sizeof(flag));
        printf("size is equal to %d and cnt is %d\n",size,cnt);
        flag[cnt] = 0.1;
    }
    printf("size is equal to %d\n",size);
The variable "size" changes from 6 as it was previously determined to a garbage number, and I cannot modify the number of iterations.  For example, if I set cnt < sizeof(flag)-1, there is no change.  -2,-5, etc no change.  However if I drastically reduce the size, it gets stuck in an infinite loop.  sizeof(flag) is 40, not 5 like I'd want it to be, but dividing by 8 also gets it into an infinite loop somehow.  Any advice?
This question was answered, thank you everyone!
 
     
     
     
    