below is a portion of my program. Any assistance is greatly appreciated.

essentially, i am trying to use this loop structure to assign values for a 1x20 array. Values must conform to the range restrictions (10<=x<=100). Also, if user enters number outside of range, i want a continue function to repeat the loop without incrimentation of the loop integer "i". If value conforms to restrictions, it should be stored in the array and the value will be printed.

Code:
for (i=0;i<=19;i++);
 {
 printf("Enter number between 10 and 100:");
 scanf("%f", ar[i]);
  if (ar[i]<10||ar[i]>100)
   printf("\nInvalid number, not within the specified range");
   continue;
  else
   printf("%d",i);
 }