Untitled

Anonymous
plain_text
11/17/2022 5:27 PM
240 B
17
Indexable
#include <iostream>
using namespace std;
int main()
{
	unsigned A = 13, B = 3, STEP = 1, a, b, c;
	a = ~B;
	b = A ^ B;
	c = B >> STEP;
	cout << a << "\n"<<b<<"\n"<<c;
}
Editor is loading...