Looking for Об'єктно-орієнтоване програмування (1 курс КН) test answers and solutions? Browse our comprehensive collection of verified answers for Об'єктно-орієнтоване програмування (1 курс КН) at moodle.chnu.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
(C++)
1 int sum (int a, int b, int c, int d = 4) {
2 int result;
3 result = 128 * a + bc * d;
4 d = 25;
5 a = d;
6 return res;
7}
(C++)
Що можна сказати про параметри цієї функції.
(C++)
(C++)
(C++)
(C++)
#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++)
Відповідний йому аргумент може бути:
(C++)
(C++)
Вкажіть правильні варіанти виклику функції, якщо змінні в
викликає функції описані так: int a; char b,c; float d,x; int a; char b,c; float d,x;
(C++)