✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Чи працюватиме код поданий далі? Якщо так, то який результат його виконання?
#include <iostream>
using namespace std;
struct S
{
int t : 5;
int c : 5;
};
void main()
{
S obj = { 13, 7 };
int a = obj.t & obj.c;
int b = obj.t | obj.c;
cout << a << "\t" << b;
}