#include <iostream>
using namespace std;
int main()
{
// Bitwise Operators
// Predict output of ~4
cout << (~4) << endl;
// Predict output of 8 >> 1
cout << (8 >> 1) << endl;
return 0;
}
#include <iostream> using namespace std; struct Node { int data; Node* next; }; class Stack { Node* top; public: Stac...
No comments:
Post a Comment