
- 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
Program to calculate Area Of Octagon
An octagon is a polygon with eight sides. To calculate the area of octagon the following formula is used,
Area of octagon = ((a2*2) / *tan (22.5°)) = ((2*a*a)(1+√2))
Code Logic, The area of a polygon with eight side is calculated by using the above formula. The expression uses sqrt function to find the square root of 2. The value of expression is evaluated as a floating point value that is put into the float area variable.
Example
#include <stdio.h> #include <math.h> int main(){ int a = 7; float area; float multiplier = 6.18; printf("Program to find area of octagon
"); printf("The side of the octagon is %d
", a); area = ((2*a*a)*(1 + sqrt(2))); printf("The area of Enneagon is %f
", area); return 0; }
Output
Program to find area of octagon The side of the octagon is 7 The area of Enneagon is 236.592926
- Related Articles
- Swift Program to Calculate Area of Octagon
- Program to calculate area of Enneagon
- Swift Program to Calculate Area of Hexagon
- Swift Program to Calculate Area of Pentagon
- Program to calculate area and perimeter of Trapezium
- Program to calculate the area of a Tetrahedron
- Java Program to calculate area of a Tetrahedron
- Swift Program to calculate the area of Cube
- Haskell Program to calculate the area of Cube
- Python Program to calculate the area of Cube
- Swift Program to Calculate the Area of Enneagon
- Program to calculate area and perimeter of equilateral triangle
- Program to calculate area and volume of a Tetrahedron
- Python Program to calculate the area of a Tetrahedron
- Swift Program to calculate the area of the rhombus

Advertisements