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!
є функція
int sum (int a, int a1 = 2, int a2, int a3, int a4) {return a + a1 + a2 + a3 + a4;}
що буде виведено на екран після виконання кодуcout<<sum(9,8,7,6);
(C++)
(C++)
Відзначте правильне визначення сталої(константи):
(C++)
(C++)
В змінної типу signed char можна зберігати число
(C++)
В змінної типу unsigned char можна зберігати число
(C++)
(C++)
(C++)
enum {two = 2, three, four, ten = 10, eleven, fifty = ten + 40}; ?
(C++)
(C++)