Answer:
Both Flat, round discs.
A DVD can hold six times as much as compacity than a disc.
A CD is a Compact Disc.
Answer:
I wonder what are you saying?
Explanation:
Please give me brainliest :)
Answer:
The function in C is as follows:
int nexthour(int tme){
tme = tme%12 + 1;
return tme;
}
Explanation:
This defines the function
int nexthour(int tme){
Ths calculates the next hour using % operator
tme = tme%12 + 1;
This returns the next hour
return tme;
}