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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

const pointers

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

const pointer arguments

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

cost pointer examples

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

storage classes

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

when to user extern

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

two modules

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

static local variable

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

static global variables

17
Q

why do we use any of these?