I am trying different code ...Maybe is code problem ...Yes code problem ...
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i=SampleAddInt(2,4);
printf("%i\n",i);
return 0;
}
------------------------------
But in c++ i have problem ...
#include <iostream>
using namespace std;
int main()
{
int i=SampleAddInt(2,4);
cout << i << endl;
return 0;
}
'SampleAddInt' was not declared in this scope ...