The answer would be D, because you do 4200÷56=75 minutes. 75 minutes= 1 hour and 15 minutes
Answer:
1.75 p
Step-by-step explanation:
if you wouldn't mind giving me brainliest, i'm just trying to rank up.
Answer:
the 1 mile and 3,218 meters in step 1 should be switched
Answer:324
Step-by-step explanation:
int i = 42.7; /* konwersja z double do int */
float f = i; /* konwersja z int do float */
double d = f; /* konwersja z float do double */
unsigned u = i; /* konwersja z int do unsigned int */
f = 4.2; /* konwersja z double do float */
i = d; /* konwersja z double do int */
char *str = "foo"; /* konwersja z const char* do char* [1] */
const char *cstr = str; /* konwersja z char* do const char* */
void *ptr = str; /* konwersja z char* do void* */
Podcza