| functions/eq-sec-degree-var5.c - Funktionsdefinition før funktionskald. | Lektion 5 - slide 4 : 30 Program 2 |
#include <stdio.h>
#include <math.h>
/* Find the roots a * x*x + b * x + c = 0 */
void solveQuadraticEquation(void){
/* ... */
}
int main(void) {
solveQuadraticEquation();
/* OK: solveQuadraticEquation now known to the compile */
return 0;
}