/**************************************************************/ /* */ /* UNIX 1 / WS 92/93 Gruppe ux803 */ /* 3. Uebung - Aufgabe 1 */ /* */ /* Vorname Name Matrikelnr. */ /* --------- ------- ------------- */ /* Dietmar Dierks 125761 */ /* Roman Czyborra 127221 */ /* Torsten Buller 118794 */ /* Gerasimos Paliatsaras 140956 */ /* */ /**************************************************************/ p vorher *p Aufruf Ergebnis p nachher --------+----+-------------------------------+--------- a+2 4 a) *p = 4 a+2 a+2 4 b) *p++ = *(p++) = 4 a+3 a+3 7 c) *p+4 = (*p)+4 = 11 a+3 a+3 7 d) *(p+4) = *(a+7) = 9 a+3 a+3 7 e) *++p = ++p,*(a+4) = -1 a+4 a+4 -1 f) *p+*(p-1)+*(p+1) = 4717 a+4