logo

Crowdly

Browser

Add to Chrome

Podan je naslednji program: int *povecaj(int *x) {     *x = *x + 1;     re...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Podan je naslednji program:

int *povecaj(int *x) {

    *x = *x + 1;

    return x;

}

int main(void) {

    int y = 0;

    y = *povecaj(&y);

    povecaj(&y);

    printf("%d", y);

    return 0;

}

Kakšna vrednost se bo izpisala na standardni izhod, ko se program izvede?

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on ucilnica-fe.uni-lj.si?

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

Browser

Add to Chrome