Lectures Notes>>
Lectures :
Programs Discussed in the Class :
| Program | Link |
|---|---|
| Code to Computes nth Fibonacci number using different methods | Link |
| Code to generate random sequence of length m (command line input) | Link |
| Code to generate random sequence of length m (scanf input) | Link |
| Strings sorting | Link |
| Computes the determinant of size n matrix | Link |
| Better Multiplication Implementation | Link |
| Bad Multiplication Implementation | Link |
| Extended GCD Implementation | Link |
| Addition and Subtraction of two numbers | Link |
| Addition of two numbers | Link |
| Printing machine code of a program | Link |
| Printing ASCII code of a symbol in decimal | Link |
| Printing ASCII code of a symbol in octal | Link |
| Printing ASCII code of a symbol in hexadecimal | Link |
| Printing ASCII code of a symbol in binary, without loop | Link |
| Printing ASCII code of a symbol in binary, with loop | Link |
| Printing ASCII code of a symbol in numerical form | Link |
| Calculating PI | Link |
| 1-Add large numbers | Link |
| 2-Add large numbers | Link |
| Compute GCD | Link |
| Compute factorial | Link |
| Generate Prime number | Link |
| To Dimensional matrix | Link |
| Compute the Determinant | Link |
| Matrix Multiplication | Link |
| Test Scanf | Link |
| String Test | Link |
| Sort | Link Data |
| Computes the determinant of matrix using recursion. | Link |
| Header File for Matrix Operations | Link |
| Functions to read a matrix and to print a matrix | Link |
| Calculates determinant of a permutation matrix and arbitrary matrix. | Link |
This file contains functions for computing inverse of a square matrix:
|
Link |
This file defines a number of matrix operations:
|
Link |
| Main function for matrix operations. | Link |
|
|
| Matrix operation with dynamically allocate space. | rar tar zip |
| large sequence of numbers. | link |
| Link List. | list.h list.c main-list.c |
| Binary Search Tree. | tree.h tree.c main-tree.c |