cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
implementation file
implementation file
Dec 9, 2014 at 8:43pm UTC
Nearlybear
(1)
I don't have allot of experience I am just learning c++ unfortunately,I have an instructor who only likes to read from the book. I am not understanding what the implementations file does, please help
Dec 9, 2014 at 10:38pm UTC
Callum5042
(183)
Implementation file (source file) is where the definitions of the functions go.
class.h
void
Hello();
class.cpp
1
2
3
4
void
Hello() {
// code
}
Topic archived. No new replies allowed.