SyntaxFix
Write A Post
Hire A Developer
Questions
Your problem is that you have to change:
printf("%");
to
printf("%%");
Or you could use ASCII code and write:
printf("%c", 37);
:)