Lecture 18 - Types, Type Qualifiers, Storage Classes, C Preprocessor Flashcards
1
Q
types (and what basic ones are called)
A
- there are many basic types in the C language
- they are called first class types
- void, char, short, int, long, long long, float, double
2
Q
sizes of data
A
- there are general rules of thumb for the size of a variable, depending on type (use sizeof() to be sure)
- ex. rules that say an int must be no smaller than a short or larger than a long
- types are automatically promoted to the next larger type of the same family within arithmetic operations
3
Q
conversion
A
- after promotion, arguments to an operator are checked
- if the same, proceed, otherwise conversions may take place
- for each type, if one of the arguments is that type, the other is converted to the same type
4
Q
type modifiers
A
- integer types (char, short, int, long, long long) can have an additional modifier to indicate to the compiler whether the datum represent a signed or unsigned (always positive) value
- for not-integer types, “signed” has no meaning
- the default modifier for int is signed
5
Q
second-class types
A
- constructed types are second class types made by the programmer
- ex. include struct, union, enum, or pointer to anything
6
Q
assignments
A
- you can make assignments between compatible types or types that can be promoted
- usually works between all first class types
ex.
int i;
unsigned int ui;
float f;
char c;
…
f = ui;
i = f;
c = f;
7
Q
bad assignments
A
- can’t make assignments between data of differing second-class types
- ex. can’t make it between the structs my_struct and your_struct
8
Q
type qualifiers
A
- there are two type qualifiers that can be used with any type declaration
- const: this datum must not be modified
-volatile: this datum may be modified by something outside the program - only one at a time may be used for any single declaration
9
Q
const pointers
A
10
Q
const pointer arguments
A
11
Q
cost pointer examples
A
12
Q
storage classes
A
13
Q
when to user extern
A
14
Q
two modules
A
15
Q
static local variable
A
16
Q
static global variables
A
17
Q
why do we use any of these?
A
18
Q
A