Lecture 6 - More Structures, Declaration vs. Definition, String Functions Flashcards
what does this do?
gcc -o hw1 hw1_test.o
- 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 about a struct typedef
- 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;
often we declare the typedef when we declare the struct…
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
definition
- allocates storage for a variable (or function)
- ex. int x = 10;
- ALL definitions are also declarations
declaration
- announces the properties of a variable (or function)
- ex. int x;
definition vs. declaration
definition allocates memory AND announces the properties of a variable, declaration just announces the properties
function prototype
- a forward declaration declaration
- double some_function(int, float);
- the creation of that function is a definition
where to put declarations/definitions
- put pure declarations OUTSIDE of functions
- put definitions (e.g. variables) inside functions
structures inside structures
- 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} };
arrays in structures
- 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} };
assignment of elements in an array from a structure
- ex. struct person jr = {“”, “” {0, 0, 0, 0] };
- ex. jr.codes[0] = 5;
- ex. jr.codes[1] = 10;
compound literals
- can cast a list to a struct
- ex. jr = (struct person) {“Who”, “what”, {1, 2, 3, 4} };
what #include to use functions that manipulate strings
include <string.h></string.h>
global variables
- global variable definition is one that exists outside of any function (AVOID when possible)
strncpy
- 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);
string comparison functions
- strcmp(first string, second string)
- returns 0 if they are equal, negative number is str1 after str2 lexicographically, and pos for opposite
determine the length of a string
- strlen()
- ex. char name[20] = “Jeff”;
- strlen(name)
is a typedef a declaration or definition
- it turns a variable definition into a type declaration