-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6_operators.c
62 lines (37 loc) · 873 Bytes
/
6_operators.c
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
57
58
59
60
61
62
#include <stdio.h>
int main(void){
// Binary operators :
int a,b;
a = 2;
b = 3;
printf("%d",a&b);
}
/*
OPERATORS : Symbol which make 2 operands one
// Arithematic operators + , - , * , / , %
// Relation operatos == , != , > , < , >= , <= ( 0 = false, 1 = true)
// Logical operatos && , || , !
// Assignment operator += , -=, *= , /=, =
// Bitwise operators :
>> & and
(2)&(3) = (10)&(11) = (10) = (2)
like this 10
& 11
----
10
>> | or
(2)|(3) = (10)|(11) = (11) = (3)
>> ^ exclusive or
(2)^(3) = (10)^(11) = (01) = (1)
// Miscellanous operators :
>> sizeof(a)
a ki value se koi matlab nhi , a ke datatype se matlab hai
a ke datatype ki range in bytes bta dega present artitecture ke hisab se
>> &(a)
returns address of a
>> *(a)
returns pointer of a
>> ?:
like Js, if else in one statement
>>
*/