I have the duration of a song in seconds.
After following calculations, I have the time in hour, minutes and seconds.
int hour = time / 3600;
int minute = (time / 60) % 60;
int second = time % 60;
I need to show them with this format HH:mm:ss
How can I do that?
It could be helpful