Changes between Version 36 and Version 37 of ResumedC


Ignore:
Timestamp:
Sep 1, 2009, 5:17:03 PM (15 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ResumedC

    v36 v37  
    317317  /* but since it doesn't means the pointer of a pointer, we should use *argv[] in preference because is more understandable to what really means */
    318318}}}
     319
     320
     321==== Operators to access to memory ====
     322
     323|| Operator || Description || Example || Result ||
     324|| &        || Address of  || &x      || A constant pointer to '''x''' ||
     325|| *        || Indirection || *p      || The value (or the function) pointed by the '''p''' address ||
     326|| [ ]    || Element of array || [x]i || *(x+i), the index element '''i''' in the array '''x'''     ||
     327|| .  || Member of a structure or union  || s.x || The member with name '''x''' in the structure or union '''s''' ||
     328|| -> || Member of a structure or union  || p->x || The member with name '''x''' in the structure or union pointed by '''p''' ||
    319329
    320330