( C?                       print the byte contained at address )

: c?                              ( addr --- )
  c@                              ( fetch byte at addr)
  .                               ( print it)
;
