You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
442 B
C

/*(1^1) + (2^2) + (3^3) + (4^4) + (5^5) + ... + (n^n)*/
#include<stdio.h>
#include<math.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,sum=0;
printf("Enter value of n");
scanf("%d",&n);
for(i=1; i<=n; i++)
{
sum=sum+power(i,i);
}
printf("Sum: %d",sum);
return 0;
}