Which output format correctly prints an item description lef
Which output format correctly prints an item description left justified with up to 10 letters?
| 
 | |||
| 
 | |||
| 
 | |||
| 
 | 
Solution
Answer: C) \"%-10s\"
to get left justified with up to 10 letters, we need to have a percentage sysmbol and followed by minus and followed by number (how many - 10) and followed by letter.

