Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
shedeed said:i mean that i have a program written that have a certain functions it does, and i want to use these functions in another program without cpying them again.
- it's not trueshedeed said:i've once read that #include<filename> or the "#define" preprocessor can be used
#ifndef foo1_h_
#define foo1_h_
int foo1(int argument);
#endif // foo1_h_
#include "foo.h"
int foo(int argument)
{
return argument;
}
#include "foo.h"
int main(void)
{
int result;
result = foo(100);
}