dos33fsprogs/demos/galaxy/test.c
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

12 lines
176 B
C

#include <stdio.h>
#include <math.h>
int main(int argc, char **argv) {
printf("%lf\n",atan2(1,1));
printf("%lf\n",atan2(1,-1));
printf("%lf\n",atan2(-1,1));
return 0;
}