#include <stdio.h>
int main()
{
int a;
printf(“Enter a: ”);
scanf(“%d”, &a);
int volume=a*a*a;
printf(“Volume of the cube=%d”,volume);
}
Output-
Enter a: 5
Volume of the cube=125
#include <stdio.h>
int main()
{
int a;
printf(“Enter a: ”);
scanf(“%d”, &a);
int volume=a*a*a;
printf(“Volume of the cube=%d”,volume);
}
Output-
Enter a: 5
Volume of the cube=125
© Codrity 2016-2024 All right reserved
|
|