/* Fig. 7.20: fig07_20.cpp Using subscripting and pointer notations with arrays */ #include int main() { int b[] = { 10, 20, 30, 40 }; /* initialize array b */ int *bPtr = b; /* set bPtr to point to array b */ int i; /* counter */ int offset; /* counter */ /* output array b using array subscript notation */ printf( "Array b printed with:\nArray subscript notation\n" ); /* loop through array b */ for ( i = 0; i < 4; i++ ) { printf( "b[ %d ] = %d\n", i, b[ i ] ); } /* end for */ /* output array b using array name and pointer/offset notation */ printf( "\nPointer/offset notation where\n" "the pointer is the array name\n" ); /* loop through array b */ for ( offset = 0; offset < 4; offset++ ) { printf( "*( b + %d ) = %d\n", offset, *( b + offset ) ); } /* end for */ /* output array b using bPtr and array subscript notation */ printf( "\nPointer subscript notation\n" ); /* loop through array b */ for ( i = 0; i < 4; i++ ) { printf( "bPtr[ %d ] = %d\n", i, bPtr[ i ] ); } /* end for */ /* output array b using bPtr and pointer/offset notation */ printf( "\nPointer/offset notation\n" ); /* loop through array b */ for ( offset = 0; offset < 4; offset++ ) { printf( "*( bPtr + %d ) = %d\n", offset, *( bPtr + offset ) ); } /* end for */ return 0; /* indicates successful termination */ } /* end main */ /************************************************************************** * (C) Copyright 1992-2004 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/