ADVT POST

c program area of rectangle by taking user input

area of rectangle c program Area of Rectangle


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int l,b,a;
printf("enter values");
scanf("%d%d",&l,&b);
a=l*b;
printf("%d",a);
getch();
}

Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.