My function is not completely compiled. What is missing? #17262
Answered
by
sbc100
FranciscoOssian
asked this question in
Q&A
-
It prints "value -> X", but never "hi". deleting emscript dependencies in main.c and use gcc "hi" is printed |
Beta Was this translation helpful? Give feedback.
Answered by
sbc100
Jun 18, 2022
Replies: 1 comment 1 reply
-
The final printf is lacking a newline.. which means its most likely buffered in the stdout line buffer. Try adding a newline or calling |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
FranciscoOssian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The final printf is lacking a newline.. which means its most likely buffered in the stdout line buffer. Try adding a newline or calling
fflush()
.