Program to find Cube September 11, 2019 Get link Facebook X Pinterest Email Other Apps // Program to find Cube #include<stdio.h> #include<conio.h> main(); { int n,Cube; clrscr(); printf("Enter a number:"); scanf("%d",&n); Cube=n*n*n; printf("\n Cube:",Cube); getch(); } Comments
Comments
Post a Comment