Operators Flashcards

1
Q

++

A

Increment (Arithmetic)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A

Decrement (Arithmetic)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

%

A

Modulus (Arithmetic)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

&&

A

Logical and (Logical)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

||

A

Logical or (Logical)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

!

A

Logical not (Logical)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

? :

A

Logical ternary (Logical)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

&

A

Bitwise and (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

|

A

Bitwise or (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
A

Bitwise xor (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

~

A

Bitwise ones compliment (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
A

Bitwise shift left (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

> >

A

Bitwise shift right (Bitwise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

+=

A

Assign plus-equal (Assignment)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

-=

A

Assign minus-equal (Assignment)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

*=

A

Assign multiply (Assignment)

17
Q

/=

A

Assign divide (Assignment)

18
Q

%=

A

Assign modulus-equal (Assignment)

19
Q

sizeof()

A

Get the size of

20
Q

[]

A

Array subscript

21
Q

&

A

The address of

22
Q

*

A

The value of

23
Q

->

A

Structure dereference

24
Q

.

A

Structure reference