home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / prg / alb_c10 / chap_09 / ch09_01.c next >
Encoding:
C/C++ Source or Header  |  1994-09-08  |  564 b   |  22 lines

  1. /*********************************************************************
  2. *  CH09_01.C                                            Tableaux  *
  3. *********************************************************************/
  4.  
  5. #include<stdio.h>
  6.  
  7. main( void)
  8. {
  9.     int tab[5];
  10.  
  11.     printf(" tab= %d , &tab[3]= %d", tab, &tab[3]);
  12.  
  13.    /*   tab+= 10;      refus du compilateur: tab n'est pas une l-value
  14.                ou si vous prΘfΘrez une variable, c'est ici une
  15.                constante.                           */
  16.  
  17. }
  18. /*
  19.  
  20.  tab= 6620 , &tab[2]= 6626                                          */
  21.  
  22.