Computer Science, asked by dhnnjy5623, 1 year ago

Write c expression raising 2 to the power 5

Answers

Answered by hari193
2
the expresion rasing 2to the power 5 is
  {2}^{5}
Answered by ashfaqalimk
2
for(i=1;i<=5;i++)
{
n=i;
m=2*n;
}
printf("2^5 = %d",n);
Similar questions