
- C Programming Tutorial
- C - Home
- C - Overview
- C - Environment Setup
- C - Program Structure
- C - Basic Syntax
- C - Data Types
- C - Variables
- C - Constants
- C - Storage Classes
- C - Operators
- C - Decision Making
- C - Loops
- C - Functions
- C - Scope Rules
- C - Arrays
- C - Pointers
- C - Strings
- C - Structures
- C - Unions
- C - Bit Fields
- C - Typedef
- C - Input & Output
- C - File I/O
- C - Preprocessors
- C - Header Files
- C - Type Casting
- C - Error Handling
- C - Recursion
- C - Variable Arguments
- C - Memory Management
- C - Command Line Arguments
- C Programming useful Resources
- C - Questions & Answers
- C - Quick Guide
- C - Useful Resources
- C - Discussion
Biggest Square that can be inscribed within an Equilateral triangle in C?
An inscribed planar shape or solid is one that is enclosed by and "fits snugly" inside another geometric shape or solid. To say that "square is inscribed in triangle" means precisely the same thing as "triangle is circumscribed about square".
Biggest Square that can be inscribed within an Equilateral triangle −
Biggest Square that can be inscribed within an Equilateral triangle −
Let’s take an example,
Input: 5 Output: 2.32
Explanation
The side of the square be x.
Now, AH is perpendicular to DE.
DE is parallel to BC, angle AED = angle ACB = 60
In triangle EFC,
⇒ Sin60 = x/ EC
⇒ √3 / 2 = x/EC
⇒ EC = 2x/√3
In triangle AHE,
⇒ Cos 60 = x/2AE
⇒ 1/2 = x/2AE
⇒ AE = x
side AC of the triangle = 2x/√3 + x. Now,
a = 2x/√3 + x
x = a/(1 + 2/√3) = 0.464a
Example
#include <stdio.h> #include <math.h> int main() { float a = 5; float area = 0.464 * a; printf("The area is : %f",area); return 0; }
Output
The area is : 2.320000
- Related Articles
- Biggest Square that can be inscribed within an Equilateral triangle?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle in C?
- Biggest Reuleaux Triangle inscribed within a square which is inscribed within an ellipse in C?
- Biggest Reuleaux Triangle inscribed within a square which is inscribed within an ellipse?
- Biggest Reuleaux Triangle inscribed within a square which is inscribed within a hexagon in C?
- Biggest Reuleaux Triangle inscribed within a square inscribed in a semicircle in C?
- Biggest Reuleaux Triangle inscribed within a square which is inscribed within a hexagon?
- Biggest Reuleaux Triangle within a Square which is inscribed within a Circle in C?
- Biggest Reuleaux Triangle within a Square which is inscribed within a Right angle Triangle in C?
- Biggest Reuleaux Triangle within a Square which is inscribed within a Circle?
- Biggest Reuleaux Triangle within a Square which is inscribed within a Right angle Triangle?
- Biggest Reuleaux Triangle inscirbed within a square inscribed in a semicircle?
- Biggest Reuleaux Triangle within A Square in C?
- Area of largest triangle that can be inscribed within a rectangle in C Program?

Advertisements