#include #define START 0 /* Table starts with this value */ #define END 20 /* Table ends near this value */ #define INC 1 /* Values in table incremnt by this value */ int main () { int i; printf ("Sekunden Hoehe in m\n"); for (i=START; i<=END; i+= INC) { printf ("%5d %5d\n", i, 5*i*i); } return 0; }