Matrix Header File Missing

Sep 7, 2015 at 7:06pm
How do I eliminate the two error messages in the code below?
The coding is from Programming Principle and Practice Using C++
I am running Visual Studio 2013 Professional.

1
2
3
4
5
//	C24 Test
#include <iostream>
#include "Matrix.h"   // error C1083: Cannot open include file: 'Matrix.h': No such 
file or directory
using namespace Numeric_lib;  //3	IntelliSense: name must be a namespace name 
Last edited on Sep 7, 2015 at 7:28pm
Sep 7, 2015 at 7:34pm
Well, I can't think of many reasons as to why it can't find a header file. Obvious one is that the header file doesn't exist, or you misspelled it. You copied this from a C++ book? They don't always give you the complete code. Make sure you have the "Matrix.h" file into your project folder and try again.
Sep 8, 2015 at 1:14am
closed account (E0p9LyTq)
Support code for "Programming -- Principles and Practice, 2nd Edition"

http://stroustrup.com/Programming/PPP2code/
Sep 9, 2015 at 5:21am
Thank you FurryGuy. You found the header file I was looking for.

Topic archived. No new replies allowed.