1/16
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
address
A value that specifies the location of a variable in memory.
dereferencing
Locating an object when a pointer to the object is given
Pointer Syntax

* operator
access location to which pointer points
& operator (used with variable)
yields a memory address
pointer to nth array element
a[n] or *(a + n)
C string
An array of char values
C string declaration
char charArr[] = "word"
Returns the length of s