Skip to content

Commit

Permalink
Update ex3_32.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuanggengzhen committed Sep 20, 2015
1 parent dd52cc5 commit a3199e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch03/ex3_32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ int main()
int arr[10];
for (int i = 0; i < 10; ++i) arr[i] = i;
int arr2[10];
for (int i = 0; i < 10; ++i) arr2[i] = arr2[i];
for (int i = 0; i < 10; ++i) arr2[i] = arr[i];

// vector
vector<int> v(10);
Expand Down

0 comments on commit a3199e3

Please sign in to comment.