mirror of
https://github.com/buhman/nds.git
synced 2025-06-18 14:35:38 -04:00
11 lines
135 B
C
11 lines
135 B
C
#include <stdio.h>
|
|
|
|
#include "math.h"
|
|
|
|
int main()
|
|
{
|
|
for (int i = -360; i <= 360; i++) {
|
|
printf("%d %d\n", i, sin_fp12(i));
|
|
}
|
|
}
|