Hi freind,
I am facing problem in threading
eg:
int sum(int a, int b)
{
//complex code/
//time conusming code
return int;
}
Now I want to run this method through tread.. but here i have return type so confused how to call sum method in thread ?