Browse Source

Delete 'tag4a2.c'

master
Cathrin 5 years ago
parent
commit
db2b4264ec
1 changed files with 0 additions and 14 deletions
  1. 14
      tag4a2.c

14
tag4a2.c

@ -1,14 +0,0 @@
#include <stdio.h>
double square_to (double *a) {
*a = *a * *a;
printf("Das Quadrat ist %f .\n", *a);
return *a;
}
int main() {
double u=7;
printf("Das Ergebnis ist: %f .\n", square_to(&u));
return 0;
}
Loading…
Cancel
Save