Page

Sunday, 17 June 2018

program to fing area of square in c

#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
int a,square;
printf("enter the value a:");
scanf("%d",&a);
square=(a*a);
printf("the required value is:");
printf("%d",square);
getch();
return(0);
}


No comments:

Post a Comment