Your best bet is to pick up the input as a string then do a conversion using something like strtod(cont char s*, char **endptr), atof(const char *s), or even printf. It's going to depend on wether you use stings or an array of characters. I personnally prefer to use strings and atof or atoi.<br>