Where can a pointer point to?
Heap
Stack
Global
Text
…Anywhere!
A pointer that stores the address of a function’s code
With this, we can pass a function as an argument
This allows us to reuse code
E.g., sorting an array of arbitrary objects could use a function pointer as the comparison function
You will be debugging several functions that all use pointers incorrectly
-
We’ve given you a set of functions as tools
Your job is to use these tools in the right order to print “Illinois”
Maybe, we don’t want to pass around the size of the array everywhere
We know that NULL is not a valid string (but this doesn’t work for every type)
char *ptr[] = ...;// vs
int arr[] = ...;
arr[len] = NULL; // NULL = 0, meaning we have a valid element
strdup
: return a string copystrcpy
,strncpy
: copy a string to another stringtoupper
, tolower
: uppercases/lowercases an input characterispunct
,isspace
,isalpha
: decide whether a character is punctuation/alphabetical/whitespace
strtok
Valgrind is a framework for building program analysis tools. The most popular Valgrind tool is memcheck, which detects memory leaks. You will use Valgrind very often in CS 341, and the autograder will run Valgrind against your code to check for memory leaks.
Given a program myprog arg1 arg2
:
valgrind --leak-check=yes myprog arg1 arg2