Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Every time you visit for the FIRST TIME today... [Part 1]

Name: Anonymous 2013-10-20 22:56

Post a random function that you made. May be from any project you've done or make one impromptu.

Any QUALITY is allowed. No bullying!

Name: Anonymous 2013-10-22 9:46

[/code]int isprime(long long int n)
{
long long i, sqrt_n;

/* If even number */
if ((n % 2 == 0) || n <= 1)
return 0;

sqrt_n = sqrt(n);
/* Skip every 2nd number to avoid even numbers
to reduce the number of loops */
for (i = 3; i <= sqrt_n; i += 2) {
if (n % i == 0)
return 0;
}

return 1;
}[/code]

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List