Object.-oriented programming (54)

27 Name: #!usr/bin/anon 2005-03-12 01:22 ID:Heaven

Most languages aren't strictly procedural, of course.

int factorial(int n)
{
return (n == 1)?n:factorial(n-1)*n;
}

This thread has been closed. You cannot post in this thread any longer.