Level 18
Level 20
9 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
Basic Types
integer types and floating-point types.
Enumerated types
arithmetic types and they are used to define variables that can only assign certain discrete integer values throughout the program.
type void
indicates that no value is available.
Derived types
a) Pointer types, (b) Array types, (c) Structure types, (d) Union types and (e) Function types.
char
Typically a single octet(one byte). This is an integer type.
int
the most natural size of integer for the machine.
float
A single-precision floating point value.
double
A double-precision floating point value.
void
Represents the absence of type.