We can print "%" in C by writing %% as printf("%%");
The other way to print "%" is printf("%c",'%'); or printf("%s", "%");
You can do this by using %% in the printf statement. For example, you can write printf(10%%) to have the output appear as 10% on the screen.
1 12 123 1234 12345