C Program To Find Whether Area of Rectangle Is Greater Than Its Perimeter
Satish B
http://technotip.com/7145/c-program-to-find-whether-area-of-rectangle-is-greater-than-its-perimeter/
Given the length and breadth(or width) of a rectangle, write a C program to find whether the area of the rectangle is greater than its perimeter. For example, the area of the rectangle with length = 5 and breadth = 4 is greater than its perimeter.
Formula To Calculate Area of a Rectangle Area = Length * Width;
Formula To Calculate Perimeter of a Rectangle Perimeter = 2 * (Length + Width);
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=TmnErbGucfk
6781929 Bytes