Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 265 Bytes

File metadata and controls

25 lines (17 loc) · 265 Bytes

0x11. C - printf

  • printf

  • tasks done: #0, #1, #2, #3, #5, #6

  • Display ints, chars, str, ...

  • Display formatted output

  • %d : int

  • %c : char

  • %f : float

  • %u : unsigned

  • ....

Example int num;

num = 3;

_printf("Project %d", num);

sample output

3