logo

Crowdly

Browser

Add to Chrome

Qual o output do seguinte programa? int f(int *, int *, int *); int main() {...

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

Qual o output do seguinte programa?

int f(int *, int *, int *);

int main()

{

int a=-93, b=3, c=7;

c = f(&a, &b, &c);

printf("%d %d %d\n",a, b, c);

return 0;

}

int f(int *a, int *b, int *c)

{

*a = (*b) * (*c);

return !(*b);

}

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

Want instant access to all verified answers on moodle.deisi.ulusofona.pt?

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

Browser

Add to Chrome