This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

scanf problem

Hello,I would like to read data from hyperterminal and use it in uvision for further calculation. however, It seems to me that scanf is not working.
Any help, will be appreciated.
thanks in advance.

int main (void)
{
float i;
printf ("Enter value");
scanf ("%f", &i);
}

0