Write a program to store a number in an variable (write the value in the program itself). print the cube of the number by using pow()function
write an output
please give me the answer
Answers
Answered by
1
Answer:
please mark me as brainlist plz plz plz
Answered by
0
Answer:
In Turbo C
Explanation:
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main(){
int num=5,ans;
ans = pow(num,num);
printf("5^5 = %d",ans); // 3125
}
Similar questions