Table of Contents

data Keyword 1

Database

Definition

A collection of data that is organized so it can easily be modified, updated, or deleted.

References

http://searchsqlserver.techtarget.com/definition/database

Structure Pointer Phase 2

Definition

A special operator that permits expressions written as ( (*X).y ) to be more clearly expressed as ( X→y )

References

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

Demonstration

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;
}