Jump to content

cbox


Recommended Posts

Posted

A recursive function is a function that calls itself.

 

Example:

//C++ Returns the Greatest Common Denominator
int gcd(int x, int y)
{
 if (y == 0)
 return x;
 else
 return gcd(y, x % y); //calls itself
}

 

What you posted is a linear search

Posted (edited)

Great, thanks a lot for the searching bytes and dll.

Look works, but now how to know the hex adress of the scanbyte result? :huh:

Thanks. :rolleyes:

 

Ok, i have my answer, for example :

MessageBox.Show("Here : " + i.ToString("X2"));

Edited by simba

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...