Currently we have no way to print numerics anywhere. This makes visual logging or debugging difficult.
We also can't convert strings into numerics which might be annoying later.
snprintf is preferred since we dont have the streams for printf or fprintf to write to.
Other C standard string functions (like strcpy_s) would be useful but aren't must-have worthy.
Keep in mind that we don't have dynamic allocation so we have to use statically sized strings.
Currently we have no way to print numerics anywhere. This makes visual logging or debugging difficult. We also can't convert strings into numerics which might be annoying later.
The must-haves are:
snprintf
is preferred since we dont have the streams forprintf
orfprintf
to write to. Other C standard string functions (likestrcpy_s
) would be useful but aren't must-have worthy. Keep in mind that we don't have dynamic allocation so we have to use statically sized strings.