| functions/eq-sec-degree-var4.c - Løsning af 'definition efter kald' med brug af en prototype. | Lektion 5 - slide 4 : 30 Program 3  | 
#include <stdio.h>
#include <math.h>
void solveQuadraticEquation(void);  /* This is a PROTOTYPE */
int main(void) {
  solveQuadraticEquation();  
  return 0;
}
/* Find the roots in a * x*x + b * x + c = 0 */
void solveQuadraticEquation(void){
  /*  ... */
}