I'm needing to use something similar to the printf function here so I can display a value stored in a variable instead of going with preset numbers. I'll express it in code that doesn't work.Code :char defaultframemessage[] = "Frame: 1"; char *framemessage = defaultframemessage;
Like in printf:Code :char defaultframemessage[] = "Frame: %d",framenumber; char *framemessage = defaultframemessage;
Hopefully this is easily possible and there is an obvious solution that I'm not seeing. :P Thanks in advance!Code :printf("Frame: %d",framenumber);![]()




