Lecture 6 - More Structures, Declaration vs. Definition, String Functions Flashcards

1
Q

what does this do?
gcc -o hw1 hw1_test.o

A
  • links the object file hw1_test.o and produces an executable file named hw1
  • if you have compiled hw1_test.o correctly you will now be able to use ./hw1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

how about a struct typedef

A
  • works same as before
  • pretend you’re defining a struct
  • ex. struct my_data md;
    variable and change it to a typedef
  • ex. typedef struct my_data md;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

often we declare the typedef when we declare the struct…

A

typedef struct my_new_struct {
int x;
float y;
} new_struct_type;
- typedef keyword goes before struct declaration
- name used for type_def is BEFORE the semicolon

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

definition

A
  • allocates storage for a variable (or function)
  • ex. int x = 10;
  • ALL definitions are also declarations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

declaration

A
  • announces the properties of a variable (or function)
  • ex. int x;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

definition vs. declaration

A

definition allocates memory AND announces the properties of a variable, declaration just announces the properties

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

function prototype

A
  • a forward declaration declaration
  • double some_function(int, float);
  • the creation of that function is a definition
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

where to put declarations/definitions

A
  • put pure declarations OUTSIDE of functions
  • put definitions (e.g. variables) inside functions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

structures inside structures

A
  • you can define structured variables inside other structures

struct segment {
struct coord one;
struct coord two;
};
- when you initialize, you need extra braces
- struct segment my_seg = { {0, 0, 0}, {0, 0, 0} };

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

arrays in structures

A
  • you can define array variables in structure declarations
    struct person {
    char name[40];
    char title[15];
    int codes[4];
    };
  • definition/initialization
  • ex. struct person jt = {“Jeff Turkstra”, “Troublemaker”, {10, 20, 25, 9} };
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

assignment of elements in an array from a structure

A
  • ex. struct person jr = {“”, “” {0, 0, 0, 0] };
  • ex. jr.codes[0] = 5;
  • ex. jr.codes[1] = 10;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

compound literals

A
  • can cast a list to a struct
  • ex. jr = (struct person) {“Who”, “what”, {1, 2, 3, 4} };
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what #include to use functions that manipulate strings

A

include <string.h></string.h>

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

global variables

A
  • global variable definition is one that exists outside of any function (AVOID when possible)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

strncpy

A
  • strncpy(char *dest, const char *src, size_t n);
  • dest is buffer where string is copied, src is source string to copy from, n is max number of character to copy
  • ex. strncpy(jr.name, “jon”, 3);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

string comparison functions

A
  • strcmp(first string, second string)
  • returns 0 if they are equal, negative number is str1 after str2 lexicographically, and pos for opposite
16
Q

determine the length of a string

A
  • strlen()
  • ex. char name[20] = “Jeff”;
  • strlen(name)
17
Q

is a typedef a declaration or definition

A
  • it turns a variable definition into a type declaration