26,000 Rare Books (Digital) – Indian Culture (Govt. Of India)
indianculture.gov.in5 pointsby new2yc1 comments
double sum = 0;
for (int n = 0; n < 10; n++) { // 10 terms of Taylor Series
sum += pow(-1, n) * pow(x, 2 * n) / factorial(2 * n);
}
return sum;
}