logo

Crowdly

Browser

Add to Chrome

Що буде виведено на екран в результаті роботи програми? #include <stdio.h> ...

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

Що буде виведено на екран в результаті роботи програми?

#include <stdio.h>

int a, b, c, d;

void f (int & a, int & c, int & d)

{

int b;

a = 5; c = 7; b = 9;

}

int main ()

{

a = 1; c = 1; b = 1;

f (a, b, c);

printf ( "% d |% d |% d", a, c, b);

return 0;

}

(C++)

More questions like this

Want instant access to all verified answers on moodle.chnu.edu.ua?

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

Browser

Add to Chrome