How do you escape the % sign when using printf in C?
printf
printf(\"hello\\%\"); /* not like this */
You can use %%:
printf("100%%");
The result is:
100%