sign in • sign up
web | myLot | discussions | tasks | blogs | news | photos
homeinterestsdiscussionstasksblogsnewsmessages friendsphotosearningsmyLotquizzes

How to make header files in c++ email this discussion to a friend?

Sonucool (85)   ranked 1,162 out of 6,512 in student3 months ago

I was just thinking how to make our own header files like iostream,conio etc.
If you know a site which gives tutorial on making header files then please tell me.

 
 
student
sponsors
Wholesale Drop Ship
Get wholesale deals directly from the source. No middleman costs.
www.Alibaba.com

Send Large Files for Free
Send Large Files Quickly and Easily with Memeo Send.
www.Memeo.com

We Sell All TY Beanie Babies Here
Experienced online TY store that specializes in all TY Beanies.
www.bbtoystore.com

User has not selected a best response.
tags:  header files, tut, tutorial, c
 
1. myLot reputation of 90/100. abhishek_138 (283)   3 months ago

Hmmm.. I think you new to C++.

Open up your text editor, start prototyping your fuctions. your header should not contain any definitions, these should be done in a seperate source file that is linked to your project. In any header, you're going to want a header guard to prevent multiple definitions (if the library is included twice in the project).This tends to look like the following and all of your code should be in closed within the guard:

#ifndef MYHEADERNAME_H
#define MYHEADERNAME_H

/* Your code here*/

#endif

Always use a header guard like the one above. Do not use the #pragma once directive as that is not portable in the least. Once you've completed the code,you can go ahead and save it in the directory of your project with the .h extension. It is then accessed in your code by:
#include "pathofmyheader/nameofmyheader.h"

The path may be ommited if your header is in the same folder as your source code.

Tutorial Site are follows:

1)cplusplus.com/doc/tutorial
2)glenmccl.com/tutor.htm
3)learncpp.com

If you will not get information you required through above sites, just use Google to find anything about C++.

Wholesale Drop Ship Get wholesale deals directly from the source. No middleman costs. www.Alibaba.com
 
sponsors
Acid Reflux Cure
Here's how I cured my acid reflux. Yes, 2 simple grocery items work.
KevinsAcidRefluxCure.com

Acid Reflux Symptoms& Causes
Find Acid Reflux Causes, Symptoms& Acid Reflux Treatments.
MedTopics.net

Xtreme White, Skin Whitening Product
Xtreme White is one of the most effective skin lightening creams on the market without a prescription. Works on all skin tones. FREE SHIPPING.
www.xtremecreams.com

sponsors
Acid Reflux Cure
Here's how I cured my acid reflux. Yes, 2 simple grocery items work.
KevinsAcidRefluxCure.com
return to mylot
We are loading a word from our sponsors. No thanks, cancel loading.