Update du3/program.c

This commit is contained in:
Denis Landa 2025-10-16 17:30:13 +00:00
parent f8efe6e386
commit e59e598316

View File

@ -70,7 +70,7 @@ int main() {
char *endptr;
float val = strtof(input, &endptr);
if (*endptr != '\0') {
printf("no input\n");
printf("bad input\n");
exit(0);
}
push_stack(&s, val);