// Program
# include <stdio.h>
int main()
{
int a,b,area;
char ar[30];
printf("Enter length and breadth of the rectangle : \n");
scanf("%d%d",&a,&b);
area = a*b;
itoa(area,ar,10);
printf("Area of the Rectangle is : ");
puts(ar);
return 0;
}
Nothing Succeeds Like Success
No comments:
Post a Comment
Note: only a member of this blog may post a comment.