Reply to Re: This symbol
If you don't have an account, just leave the password field blank.
I once wrote (and constantly reused) a C++ function like the following:
int amodb(int a, int b)
{
int x = a / b;
x = bx;
a = a - x;
}
I felt really stupid when I first learned what % meant.
int amodb(int a, int b)
{
int x = a / b;
x = bx;
a = a - x;
}
I felt really stupid when I first learned what % meant.