+ 4
[SOLVED]how do i print %0.10f or something like that in a code?
like in this code, https://code.sololearn.com/chR4TzM0aWMt/#cpp the output should be %0.10f why cant i print this?
3 Antworten
+ 4
Replace % with %%.
+ 3
just do:
printf("%%0.10f why cant i print this?");
+ 3
Ulisses Cruz Anna geez that was fast.
thanks for the answers.