Week 12 Flashcards
What does the c preprocessor do?
Makes changes to your program before code generation begins
What are the typical uses of a c preprocessor?
Including other files like .h files
Defining constants
Defining macros
Selectively include or exclude some parts of a program
Give additional details to the compiler
What do all preprocessor commands begin with?
#
What does #include do?
Include the contents of one file directly into another file
What does #define symbol value do?
Replace all occurences of symbol with the value
What does #define do?
Can be used to make macros with parameters
The don’t fully behave like function calls
Is it a good practice to hae parameters in parantheses?
Yes, it helps to make sure we get the result we expected.
What does FILE do?
the name of the file being compiled
What is LINE?
The line number where symbol was found.
What is DATE and TIME
indicates when the compilation happened
What is FILE and LINE
Would most typically be used in other macros where you dn’t know immediately where the macro is being used.
What do #if, #else, #endif do?
LEts you use an expression to determine what to include in a compilation
Exclude temporary code with #if 0 …#endif
Include OS-specific code based on the expression
What is the shorthand for #if defined(X)…#endif
Becomes #ifdef X….#endif
What is the shorthand for #if_defined(x)…#endif
Becomes #ifndef X ….#endif
How are compiler specific commands defined?
by #pragma statements
What do #error and #warning do?
Lets you print messages at compile time
What is the set L?
Called the language
What are the elements of Chomsky Hierarchy?
Different levels of complexity for matching patterns of data.
Regular expressions
Context-free grammars
Context-sensitive grammars
Unrestricted grammars
What are the elements of regular expressions?
Simplest of rules
Cannot match the numbe of pairs of things like matching parantheses
Can be handled by finite state machine
What are the elements of context-free grammars?
Needs a non-deterministic pushdown automaton
What are the elements of context-sensitive grammars?
Needs a non-deterministic Turing machine
What are the elements of the unrestricted grammars?
Allows for the most complx rules
What are some different symbols to represent the regular expressions in different tools?
Grep, sed
bash pathname expansion, find
perl
Grep/sed syntax: What are the basic operations?
Character specification
Catenation
Repetition
Grouping
Alternation
What is catenation?
The step of putting two strings or patterns in sequence to make a longer string or pattern.
Does order of catenation matter?
Yes
What are the repetition notation of grep/sed repetition?
- matches 0 or more instances of the preceding character
+matches 1 or more instances of the preceding character
? Matches 0 or 1 instances of the preceding character
{n} matches n instances of the preceding character
{n,} matches n or more instances of the preceding character
{n,m} matches at least n and at most m instances of the preceding character
If the catenation ab+ is used, what letter is affected?
asks for repetition of b, but not a
What is egrep most commonly used for?
Most commonly used to apply repetition to a catenation
How are alternatives separated in egrep/sed alternation?
by using the |
a|b|c| equivalent to [abcd]
Are regex’s a part of standard c?
No, you just need to know that they’re available as the GNU posix regular expression library: regex.h
What are the three steps to using the regular expressions?
1) Compile the expression into something usable with regcomp()
2) Use the compiled expression against 1 or more strings with regexec()
3) Release the compiled expression with regfree()
What is regex_t?
The compiled pattern
What are the two fields of regmatch_t?
rm_so - starting index of match
rm_eo - ending index of match