Dec 03 2012, 01:39 PM
M. Bison, post: 81277, member: 359 Wrote:REALLY MAN A S P A C E can change the world!!:eek:Code:#include <stdio.h>
int main()
{
char another;
int num;
do
{
printf("Enter a number\n");
scanf("%d",&num);
printf("Square of %d is %d\n",num,num*num);
printf("Want to enter another number? y/n\n");
scanf(" %c",&another);
} while(another=='y');
return 0;
}
Thanks Bison thanks once again