Lecture 5 - the assert() Macro, Random access File I/O, typedef, Structures Flashcards

1
Q

the assert() macro

A
  • asserting that something must be true
  • if condition is false, program aborts and tells you where it occurred
  • MUST #include <assert.h></assert.h>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

when to use assert()

A
  • if AND ONLY if you have to
  • use alternative error detections if you can
  • can be used for debugging
  • check code expectation and error conditions you can’t handle
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

how to turn off assertion check when compiling

A
  • gcc -DNDEBUG=TRUE -o my_prog my_prog.c
  • all assertion checks will be skipped
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

random file access

A
  • we can use an open file pointer to say the following things
  • where are we at in the file (what’s our offset)?
  • go back to the beginning/end/specific position in the file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ftell()

A
  • int ftell(FILE *file_pointer);
  • used to find out where we are in the file
  • return value is either current offset from beginning of file or -1 if error occurs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

fseek()

A
  • used to “go somewhere” in the file
  • int fseek(FILE *fp, long int offset, int whence);
  • fseek() returns 0 on success and -1 in the event of an error
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

fseek() from whence values (three things)

A
  • SEEK_SET: new offset will be relative to beginning of the file
  • SEEK_CUR: new offset will be relative to the current position of the file
  • SEEK_END: new offset will be relative to the end of the file
  • if offset is 0, will be exact position of whence
  • offset can be negative to go backwards
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

to determine how long file is

A

fseek(file_pointer, 0, SEEK_END);
long x = ftell(file_pointer);
fseek(file_pointer, 0, SEEK_SET);

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

how to check if we hit EOF

A

fgets(buffer, 200, file_pointer);
if (ftell(file_pointer) == len) {
…. }

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

uses for random file access

A
  • accessing a file as a database
  • extracting parts of a file
  • modifying a few bytes in the file without writing the whole thing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

typedef

A
  • allows you to create your own data types as long as they aren’t already C keywords
  • ex. typedef double array[3];
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

when to use typedef

A
  • when you have a variable type that is used a lot and has a really long description
  • has a parameter type you might change later
  • is a structure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

typedef syntax

A
  • appears to be backwards
  • pretend you’re defining a variable, then make it a type
  • ex. typedef unsigned int uint5[5];
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

purpose for structures

A
  • large programs usually have many data
  • instead of crating a separate variable for each one, it is helpful to group them together to better organize
  • a structure is the thing that allows you to use one name to refer to many variables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

declaration of a structure

A

struct my_data {
int age;
float height;
};
- note the semicolon!!
- storage definition and initialization
struct my_data my_var = {19, 5.3}

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

declaration and definition of a struct together

A

struct my_data {
int age;
float height;
} my_var = {19, 5.3};

17
Q

accessing elements of a struct

A
  • once a structure variable has been defined, you can access it internal elements with the dot operator
  • ex. my_var.height = 6.1;
  • ex. x = my_var.age;
18
Q

properties of structures

A
  • anything can be defined inside a struct EXCEPT functions
  • you can put arrays, structs, in structs in any order
  • no limit to num of elements in a struct but each have unique name
  • structs can be passed to functions and returned from functions
  • can assign one struct from another
19
Q

where to put declarations of a structure

A
  • structure variables can be defined inside or outside of a function (but shouldn’t)
  • declaration should be OUTSIDE of a function