-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlmath.c
32 lines (28 loc) · 844 Bytes
/
lmath.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Written by Roy McNeill */
/* Released to the public domain */
/* Modified by Paul Edwards */
/* Set i to the number you want the reciprocal of */
#define PLACES 501
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
long i, j, top;
int place;
char ans[PLACES + 1], buf[40];
i = 300;
top = 1;
for (place = 0; place < PLACES; place++)
{
j = top / i; /* divide */
sprintf(buf, "%d", j); /* convert to string. Answer should be 1
digit. */
ans[place] = *buf; /* add digit to big answer */
top = top - j * i; /* get remainder */
top *= 10; /* shift one decimal place */
}
ans[PLACES] = '\0';
printf("ans is %s\n", ans);
return 0;
}