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
Answer:1st one 2nd one and 8th
Step-by-step explanation:
Answer:
The system has one solution.
Step-by-step explanation:
We have two equations:
y = -2x - 4
y = 3x + 3
Equalling them:
y = y
-2x - 4 = 3x + 3
5x = -7

And

Replacing in the other equation we should get the same result.

So the system has one solution.
Answer:
(-7,-8)
Step-by-step explanation:
The original point is (8,7)
To reflect it, just switch their places and change their signs.
So, (-7,-8)