#include "stdio.h"
#include "math.h"
void main(void)
{
int a;
int result;
int sum=0;
printf("Enter a Number : ");
scanf("%d",&a);
for(int i=1;i<=4;i++)
{
result = a^i;
sum =sum+result;
}
printf("%d\n",sum);
}
I don't know why this '^' is not working as power. Please help.
<stdio.h>and<math.h>are usually used instead of"stdio.h"and"math.h". But it looks like GCC doesn't really care. – Sergey Tachenov Jan 30 '11 at 14:18^since the question (and answers) make little sense otherwise. Since peoro answered correctly for your question, you should accept it and move on. If you have another question, then please ask another question. Don't edit this one to make all the work done meaningless. – paxdiablo Jan 30 '11 at 14:30