Hatayı nerede yapıyorum?
Soru: Write a C program to display the sum of the series:
1 + 𝑥 +𝑥^2/2! +𝑥^3/3! +x^4/4! + ⋯𝑥^n/n!
Kod:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x, n, i, j, sum =1;
float fac = 1, result =1, f;
printf("enter value of x: ");
scanf("%d"...