answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Write a C programme for area of rectangle?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a c programme to draw a rainbow?

Write a C program to Draw a RAINBOW and fill the suitable colors ...


Write a C programme to count the number of vowals present in your name?

abhimanyu


How do you write a c program to find area of rectangle using function?

There will be a function in it like this: double RectangleArea (double a, double b) { return a*b; }


Write a programme for substraction of two numbers in c language?

substracion of any two number program in c


How do you write c programme to find proper subset of a given string?

you can use strstr()


Find the dimensions of the rectangle of largest area that can be inscribed in a circle of radius a in C programming?

Find the dimensions of the rectangle of largest area that can be inscribed in a circle of radius a in C programming


Write a c sharp program to find the area of square?

include<stdio.h> #include<conio.h> void main() { int length, breadth, area ; printf("\n Enter the length & breadth of a Rectangle"); scanf("d",&length,&breadth); area=length*breadth; printf("\n Area of the Rectangle=%d",area); getch(); }


How do you use this function in c programme?

I don't use that function in C programme.


Write a C program to find the area and perimeter of you square ii rectangle?

#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }


Write a c programme to print all the even numbers in descending order?

#include(stdio.h) int main ()


How do you write a c programme for elecricity bill?

Write your program and if you are having a problem post it here with a description of the problem you are having. What you are asking is for someone to do your homework for you.


Write a programme in c to print abcdefedcba?

#include <stdio.h> int main (void) { puts ("abcdefedcba"); return 0; }