Hello, :hello:
A very noobish but annoying question, I wasn't able to find the answer :
How can you use the % symbol in a string without having it interpreted as a variable type ?
For exemple I'd like to have a screen output like :
The under sample doesn't work, because the bold-underlined % symbol is interpreted as a variable type, not a character !
I know it's possible because I've seen it in some addons, so would someone be kind enough to give me a hint ? 
Thanks and always
!
A very noobish but annoying question, I wasn't able to find the answer :
How can you use the % symbol in a string without having it interpreted as a variable type ?
For exemple I'd like to have a screen output like :
Code:
Value : 256 (100.0%)
Code:
len = sprintf_s(buffer, "Value : %.1f (%.0f%)", myvalue, myvalue*100/someconstant);

Thanks and always
!
Last edited: