✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Geben Sie an, welcher Wert am Ende ausgegeben wird.
void quadrat(float *zahl_p) { int zahl = *zahl_p; *zahl_p = zahl * zahl;}int main() { float wert = 5; float *pointer; pointer = &wert; quadrat(pointer); printf("%f", wert); return 0;}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!