C Data Types Flashcards

Memorize C data types and sizes

1
Q

long double

Number of Bytes and Range

A

Bytes = 12

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

long int

Number of Bytes and Range

A

Bytes = 4

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

unsigned long long int

Number of Bytes and Range

A

Bytes = 8

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

unsigned long int

Number of Bytes and Range

A

Bytes = 4

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

int

Description, Number of Bytes and Range

A

Description : Used to store an integer
Bytes = 4
Range = -2,147,483,648 : 2,147,483,647
(+/- 2G)

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

short int

Number of Bytes and Range

A

Bytes = 2
Range = -32,768 : 32,767
(+/- 32K)

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

unsigned short int

Number of Bytes and Range

A

Bytes = 2
Range = 0 : 65,535
(64K)

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

signed char

Number of Bytes and Range

A
Bytes = 1
Range = -128 : 127
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

double
Description and
Number of Bytes

A

Stores decimal numbers (numbers with floating point value) with double precision

Bytes = 8

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

unsigned char

Number of Bytes and Range

A
Bytes = 1
Range = 0 : 255
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

long long int

Number of Bytes and Range

A

Bytes = 8

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

unsigned int

Number of Bytes and Range

A

Bytes = 4
Range = 0 : 4,294,967,295
(4G)

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

float

Description and Number of Bytes

A

Stores decimal numbers (numbers with floating point value) with single precision
Bytes = 4

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