How do get numbers to display as two digits in C?
For C programming. How do i get numbers to be displayed as 00, 01, 02, 03, instead of 0, 1, 2, 3. I just need 0 before the number until 10. i know when your doing decimals you can do "%.2f" etc. but what about in reverse for integers? here is what I am using...** printf("Please enter the hours: "); scanf ("%d",&hour); printf("Please enter the minutes: "); scanf ("%d",&minute); printf("Please enter the seconds: "); scanf ("%d",&second); printf("%d : %d : %d\n", hour, minute, second); } I need the numbers to display as 00 : 00 : 00 ?? You need to use %02d if you want leading zeroes padded to two