Introduction To Algorithms

This book provides a comprehensive introduction to the modern study of computer algorithms. It presents many algorithms and covers them in considerable depth, yet makes their design accessible to readers at all levels.

1 min · Aleem Isiaka

The C Programming Language

C is a general-purpose programming language and is closely associated with Unix systems where it was developed. It is a machine independent language and often time called system programming language due to its usefulness in writing compilers and operating systems. C picked up ideas from BCPL developed by Martin Richards who took ideas from B developed by Ken Thompson in 1970 for the first UNIX systems using DEC PDP-7. Both B and BCPL are untyped languages, whereas C has fundamental types like characters, integers, floating-point numbers, etc., and derived data types like pointers, arrays, structures, pointers, and unions. C has expressions and operands, where any expression can be a statement. ...

3 min · Aleem Isiaka