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 a [2] [3] = { {1,2,3 }, {7,8,9 } };
int * p = & a [0] [0];
p + = 2;
(C++)
(C++)
(C++)
(C++)
(C++)
struct {
char fio [30];
int date, code;
double salary;
} Staff [100], * ps;
(C++)
(C++)
Чи вірний нижченаведений код?Який результат його роботи?#include <conio.h> #include <iostream>int main () {enum {t, x, y, z, w}; std::cout << t + x + y + z + w; getch ();return 0;} (C++)
struct A {char * x; int y;};
A fun (void);
(C++)