Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack, Darts, Hamming, and Space Age completed yesterday. Binary and Linked List completed today.
10 lines
117 B
C
10 lines
117 B
C
#ifndef TRIANGLE_H
|
|
#define TRIANGLE_H
|
|
|
|
typedef struct {
|
|
double a;
|
|
double b;
|
|
double c;
|
|
} triangle_t;
|
|
|
|
#endif
|