Number Series program 7-C programming
In this program, we will see the Number Series program in C programming language. Please look into the program.
[(1^1)/1] + [(2^2)/2] + [(3^3)/3] + [(4^4)/4] + [(5^5)/5] + ... + [(n^n)/n]
The C program for the Number Series program is as follows:
#include <stdio.h> long power(int a, int b) { long i, p=1; for(i=1;i<=b;i++) { p=p*a; } return p; } int main() { long i,n; double sum=0; n=5; for(i=1;i<=n;i++) { sum=sum+(power(i,i)/i); } printf("Sum: %lf",sum); getch(); return 0; }