A collection of data that is organized so it can easily be modified, updated, or deleted.
A special operator that permits expressions written as ( (*X).y ) to be more clearly expressed as ( X→y )
List any sites, books, or sources utilized when researching information on this topic. (Remove any filler text).
http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_078.htm
This code points to NULL, then tries to print the hex equivalent. This will cause a seg fault as the computer cannot display a null value.
#include <stdio.h> char *poop = NULL; int main() { printf(" The location of poop is %x ", *poop); return 0; }