#include <stdio.h> int main() { int side , area; printf("enter the value of side : \n"); scanf("%d", &side); area = side * side * side; printf("%d", area); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: