Library Help
Im trying to make a simple library but im getting a lot of errors when compiling.
this is what i have so far.
1 2 3 4 5 6 7 8 9 10
|
#ifndef my_library
#define my_library
void out(string x);
void out(string x){
cin >>x;
cout <<"Entered "<< x;
}
#endif
|
Topic archived. No new replies allowed.