View Single Post
Old Oct 29th, 2004, 3:03 PM   #8
sirclif
Newbie
 
Join Date: Oct 2004
Posts: 7
Rep Power: 0 sirclif is on a distinguished road
.h is not used for the old C libraries anymore. your supposed to drop the .h and put a c in front of it.
#include <stdlib.h>

becomes

#include <cstdlib>

but you can call your own source files whatever you want. in this case,
#include"calculator.h"
is including a file called calculator.h in the working directory.
it could jsut have well been called calculator, calculator.whatextension, or kkklkj.kkjsk
sirclif is offline   Reply With Quote