added 3 c progs: fehler.c, histp.c, layout.c
[my-code/beginners.git] / layout.c
1 #include <stdio.h>
2 #include <math.h>
3
4 main()
5 {
6
7 float x;
8
9 printf("  x  |    f(x)  \n__________________\n");
10 for (x=0;x<10;x=x+.1)
11         printf(" %3.1f | %010.3f \n",x,x*exp(x));
12 }