//this is a program for the continuity demonstration
#include<stdio.h>
#include<conio.h>
void main()
{
int num;
char choice='y';
while(choice=='y'||choice=='Y')
{
printf("\n\nEnter any number: ");
scanf("%d",&num);
printf("\n\nCube of the Entered Number is %d",num*num*num);
printf("\n\nDo You Want to Continue(Y/N): ");
scanf(" %c",&choice);
}
getch();
}
#include<stdio.h>
#include<conio.h>
void main()
{
int num;
char choice='y';
while(choice=='y'||choice=='Y')
{
printf("\n\nEnter any number: ");
scanf("%d",&num);
printf("\n\nCube of the Entered Number is %d",num*num*num);
printf("\n\nDo You Want to Continue(Y/N): ");
scanf(" %c",&choice);
}
getch();
}