We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7272a2 + 88b2b26 commit 7f3097eCopy full SHA for 7f3097e
chapter_5/exercise_5_02/getfloat.c
@@ -46,7 +46,7 @@ int getfloat(float *pn)
46
while (isspace(c = getch()))
47
;
48
49
- if (!isdigit(c) && c != EOF && c != '+' && c != '-')
+ if (!isdigit(c) && c != EOF && c != '+' && c != '-' && c != '.')
50
{
51
ungetch(c);
52
return 0;
0 commit comments