home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tcpp / examples / intro33.c < prev    next >
C/C++ Source or Header  |  1990-06-09  |  420b  |  28 lines

  1. /* INTRO33.C - Beispiel aus Kapitel 4 der
  2.    Einführung */
  3.  
  4. #include <stdio.h>
  5.  
  6. /* das ist der Prototyp von «tausche» */
  7. void tausche(int *, int *);
  8.  
  9. int main()
  10. {
  11.    int x = 5, y = 7;
  12.  
  13.    tausche(&x, &y);
  14.    printf("x ist nun %d und y ist %d.\n", x, y);
  15.  
  16.    return 0;
  17. }
  18.  
  19. /* hier ist «tausche» definiert */
  20. void tausche(int *a, int *b)
  21. {
  22.    int temp;
  23.  
  24.    temp = *a;
  25.    *a = *b;
  26.    *b = temp;
  27. }
  28.