What do you mean 3 users using your program? You're only going to have 1 user to your program, unless it's internet based.
If ya' mean 3 different inputs to teh program:
#include <stdio.h>
#define users 3
int main(void) {
printf("Input %d heights:",users);
int loop = 0;
double temp[users];
while (loop < users) {
scanf("%f",&temp[loop]);
loop++;
}
return 0;
}
Change #define users 3 to #define users x, where x is the number of users your want.
Or something...