> ## Documentation Index
> Fetch the complete documentation index at: https://learn.acadlink.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Area of a Rectangle

> Take length and breadth as input and print the area.

## Problem Statement

Take length and breadth as input from the user and print the area of the rectangle.

## Solution

```c theme={null}
#include <stdio.h>

int main() {
    float length, breadth;
    printf("Enter length and breadth: ");
    scanf("%f %f", &length, &breadth);
    printf("Area = %.2f\n", length * breadth);
    return 0;
}
```

## Input

```
Enter length and breadth: 5 3
```

## Output

```
Area = 15.00
```
