We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I want to print in a terminal the "%"character when I put printf(" %c % ",var); the % doesn't print why??
add a \ in front of the special character,like this
printf("%c\%",'c');
c%
printf("%c\%",'c'); result: c% Bzzzzt! Wrong. I'm kind of guessing, but you didn't test that, did you?