home *** CD-ROM | disk | FTP | other *** search
- /*********************************************************************
- * CH09_01.C Tableaux *
- *********************************************************************/
-
- #include<stdio.h>
-
- main( void)
- {
- int tab[5];
-
- printf(" tab= %d , &tab[3]= %d", tab, &tab[3]);
-
- /* tab+= 10; refus du compilateur: tab n'est pas une l-value
- ou si vous prΘfΘrez une variable, c'est ici une
- constante. */
-
- }
- /*
-
- tab= 6620 , &tab[2]= 6626 */
-
-