Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
Problem 21 solution More...
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
Functions | |
unsigned long | sum_of_divisors (unsigned int N) |
function to return the sum of proper divisors of N | |
int | main (int argc, char **argv) |
Main function. | |
Problem 21 solution