| C Tutorial | Euclid's Algorithm in C | |||
|
The C Language C History BCPL Euclid’s Algorithm in C Euclid on the PDP-11 Pieces of C C Types Declarators Struct bit-fields Code generated by bit fields C Unions Layout of Records and Unions C Storage Classes malloc() and free() Dynamic Storage Allocation Simple Dynamic Storage Allocation malloc() and free() variants Fragmentation Fragmentation and Handles Automatic Garbage Collection Arrays Lazy Logical Operators The Switch Statement setjmp/longjmp: Sloppy exceptions Nondeterminism in C
|
Line 1: int gcd(int m, int n ) { Line2: int r; while ((r = m % n) != 0) { m = n; n = r; } return n; }
Line 1:“New
syle” function
Contact for more learning: webmaster@freehost7com |
|