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!
Який з представлених виразів виводить на екран
0000
0 0
0000
Зауваження: при написанні власних програм з використанням форматованого введення / виведення підключіть файл iomanip.h
(C++)
(C++)
(C++)
(C++)
int a [2] [3] = { {1,2,3 }, {7,8,9 } };
int * p = & a [0] [0];
p + = 3;
(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++)
Вкажіть правильні варіанти ee виклику, якщо змінні в
викликає функції описані так:
int a; char* b, *c; float d,x; (C++)(C++)
(C++)