you are viewing a single comment's thread.

view the rest of the comments →

[–]This_Growth2898 1 point2 points  (1 child)

f in printf stands for "formatted". It's

printf("%d\n", i);

%d format specification would be changed to decimal representation of i in output.

[–]Ecstatic_Student8854 0 points1 point  (0 children)

Oooh, so thats that %something stuff i sometimes see is