create a program that counts the number of numbers between 150 and 200. This is what I have so far, but it's not working. It is an array of 500 number, I did not include the array because of obvious reasons.
#include
int main()
{
int i=0;
int sum;
float a[]={.....}
for (i=0;i>150&& i<200;i++)
sum=i;
printf("There are %d numbers between 150 and 200\n", sum);
return 0;