point C

来源:互联网 发布:java 写parquet 编辑:程序博客网 时间:2024/06/18 08:30
Pointers are a central feature of C. They provide the mechanism for referencing elements of data structures,
including arrays. Just like a variable, a pointer has two aspects: itsvalue and its type. The value indicates the
location of some object, while its type indicates what kind (e.g., integer or floating-point number) of object is stored
at that location. -Computer Systems A Programmer's Perspective