CJCoding With Joseph
15per day

Zero Padding

Create four integer variables with the values 5, 42, 156, and 1003. Use printf to display each number on a separate line, formatted with zero padding to be exactly 4 digits wide:

0005
0042
0156
1003

Use %04d to pad each number with zeros up to 4 digits. Numbers already 4 digits will not have additional padding.

Expected Output:

0005
0042
0156
1003
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.