Wrox Home  
Search

Topic: C# and C++

Professional C++, 2nd Edition (0470932449) cover image
Professional C++, 2nd Edition
Marc Gregoire, Nicholas A. Solter, Scott J. Kleper
ISBN: 978-0-470-93244-5
Paperback
1104 pages
October 2011
Other Available Formats: E-Book
Paperback Version: US $44.99 Add to Cart

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
22 Error in Code
Reads:
#include <iostream>
#include <array>
using namespace std;
int main()
{
                array<int, 3> arr = {9, 8, 7};
                cout << "Array size = " << arr.size() << endl;
                for (auto i : arr)
                                cout << i << endl;
                                cout << *iter << endl;

                return 0;
}

Should be:
#include <iostream>
#include <array>
using namespace std;
int main()
{
                array<int, 3> arr = {9, 8, 7};
                cout << "Array size = " << arr.size() << endl;
                for (auto i : arr)
                                cout << i << endl;

                return 0;
}


10/26/2011
1053 Error in text
Currently reads:
- - decrement operator, 11

Should read:
-- decrement operator, 11 (space between symbols)
04/25/2012
Printer-Ready Version   Share This
With you wherever you go: pdf + ePub + kindle -- DRM-free

C# and C++ Related Resources

Blogs

Articles