Header files

I found http://www.learncpp.com/cpp-tutorial/19-header-files/ this site here for header file tutorials but the code they gave doesnt compile on my V C++ for some reason so i was wondering if anyone can point to a good place i can learn about header files? I just want basics please, all ive found googling was a bit complex. i just want to see the arrangement of such files so i can play around. thanks!
closed account (3hM2Nwbp)
Hello, what compile error are you getting? Also, can you paste in what code you are trying to compile?

I know that IDEs such as Visual Studio can be very confusing at first.

Best regards,
Luc
Last edited on
Sorry for the long reply forgot to subscribe.

1
2
3
4
5
6
7
8
9
10
11
             

#include <iostream>

using namespace std;



int main()
{
	 const string TEST="Testing";
}



1
2
3
4
5
6
7
8
              

#include "header.h"


int main()
{
	cout<<TEST;
}



Topic archived. No new replies allowed.