Computer Science, asked by am12346766, 3 months ago

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 himanshi7541
1

Answer:

please mark me as brainlist plz plz plz

Answered by kathanmajithia
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