Time

I recently bought a GPS module and noticed that as well as outputting the latitute and longitute, it also displays the time. However, it's in a 6-digit number with a decimal (example: 023403.00). Is there some code that can seperate this into 3 numbers? (02, 34, 03.00)

023403.00
If it has a leading 0 this is a string.
You can use string manipulation to do what you want.

max1213:
I recently bought a GPS module and noticed that as well as outputting the latitute and longitute, it also displays the time. However, it's in a 6-digit number with a decimal (example: 023403.00). Is there some code that can seperate this into 3 numbers? (02, 34, 03.00)

What GPS module? What code are you using to display the time?
In order to help you, we will need more information.

By "string manipulation" most of us mean C-strings, or character arrays terminated by a zero byte. On Arduino, String objects are not recommended because they cause memory problems.

Learn about all the built in functions used to manipulate strings here among many other places.