Thread
:
help me plzz
View Single Post
sumtaru
Light Poster
17May2012,19:37
First you create a header file, say add.h and put your declarations and functions there without main.
Then create add.cpp and include your header file like this #include "add.h".Write main function and
access data and functions from the header file.