Search Results

0
votes
4answers
532 views

Compile-time LCM / GCD in C

Does anyone know a mechanism to calculate at compile-time the LCM (Least Common Multiple) and/or GCD (Greatest Common Denominator) of at least two number in C (not C++, I know that template magic i …
1
vote

Compile-time LCM / GCD in C

Partly based on Kevin's answer, here's a macro-sequence that has compile-time failure for constant-values and run-time errors otherwise. It could also be configured to pull in a non-compile …