absolute value of int n
abs(n)
absolute value of long n
labs(n)
quotient and remainder of ints n,d
div(n,d)
pseudo-random integer [0,RAND_MAX]
rand()
set random seed to n
srand(n)
terminate program execution
exit(status)
allocate storage
malloc(size), calloc(nobj,size)
change size of storage
newptr = realloc(ptr,size);
deallocate storage
free(ptr);
search array for key
bsearch(key,array,n,size,cmpf)
sort array ascending order
qsort(array,n,size,cmpf)