-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitwise.cpp
56 lines (43 loc) · 866 Bytes
/
bitwise.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// #include <bits/stdc++.h>
// using namespace std;
// int main()
// {
// // unsigned int x=1;
// // signed int y=1;
// // cout<<~x;
// int y = 0;
// int x = (~y == 1);
// cout << x;
// return 0;
// }
// #include <bits/stdc++.h>
// using namespace std;
// int main()
// {
// char *s[] = { "knowledge","is","power"};
// char **p;
// p = s;
// cout << ++*p << " ";
// cout << *p++ << " ";
// cout << ++*p << " ";
// return 0;
// }
// #include <bits/stdc++.h>
// using namespace std;
// int main()
// {
// int arr[5];
// // Assume base address of arr is 2000 and size of integer is 32 bit
// printf("%u %u", arr + 1, &arr + 1);
// return 0;
// }
#include <bits/stdc++.h>
using namespace std;
int main()
{
int i;
int arr[5] = {1};
for (i = 0; i < 5; i++)
cout << arr[i] << " ";
return 0;
}