You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
175 B

  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. #include "funktionen.h"
  5. // Function to calculate the square of a number
  6. float square(float x) {
  7. return x * x;
  8. }