How do you escape the % sign when using printf in C?
printf
printf(\"hello\\%\"); /* not like this */
With itself...
printf("hello%%"); /* like this */