User Profile
Collapse
-
ksaranga replied to How to call function from c++ file from one project to another (Visual Studio 2005)in CBanfa, how to do the things your are saying? -
ksaranga started a topic How to call function from c++ file from one project to another (Visual Studio 2005)in CHow to call function from c++ file from one project to another (Visual Studio 2005)
MySolution
|_ProjectA >> amain.c
|
|_ProjectB >> bmain.c
/*amain.c*/
#include <iostream>
using namespace std;
int main()
{
cout << add(10,20);
return 0;
}
/*bmain.c*/
#include <iostream>
using namespace std;
int add(int a, int b);
int main()
{
return 0;...
No activity results to display
Show More
Leave a comment: