logo

Crowdly

Geben Sie an, welcher Wert am Ende ausgegeben wird. void quadrat(float *zahl_p) ...

✅ 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;

}

More questions like this

Want instant access to all verified answers on moodle.hs-hannover.de?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!