diff --git a/lectures/04_pointers/README.md b/lectures/04_pointers/README.md index e519492..bda9d31 100644 --- a/lectures/04_pointers/README.md +++ b/lectures/04_pointers/README.md @@ -138,8 +138,9 @@ at that location. const int n = 10; double a[n]; int i; -for ( i=0; i - Remember: the size of array a is fixed at compile time. STL vectors act like arrays, but they can grow and @@ -157,8 +158,9 @@ shrink dynamically in response to the demands of the application. const int n = 10; double a[n]; double *p; -for ( p=a; p