Q:

Write C program to find cube of a number using function

0

Write C program to find cube of a number using function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
 
// Function declaration
double cube(double num);
 
int main()
{
    int num;
    double c;
 
    //Inputting number from user
    printf("Enter any number: ");
    scanf("%d", &num);
 
    c = cube(num);
 
    printf("Cube of %d is %.2f", num, c);
 
    return 0;
}
 
//Function to find cube of any number
double cube(double num)
{
    return (num * num * num);
}

Result:

Enter any number: 6

Cube of 6 is 216.00

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write C Program to convert binary number to decima... >>
<< Write C program to check prime and armstrong numbe...