@ -5,5 +5,7 @@ ceedling test:all
gcc -o main $(pwd)/src/*.c -lm
./main
read -p "Press [Enter] key to close terminal..."
rm -r build
rm main
@ -0,0 +1,12 @@
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include"funktion.h"
float getValue(char c) {
float value;
printf("%c eingeben: ",c);
scanf("%f", &value);
return value;
}
@ -0,0 +1,6 @@
#ifndef FUNKTION_H
#define FUNKTION_H
float getValue(char c);
#endif
@ -0,0 +1,9 @@
#include "funktion.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{