Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
int main() {
const float PI = 3.14159;
int radius = 5;
float area;
area = PI * radius * radius;
printf("Area = %.2f\n", area);
return 0;
}Coding works best on desktop or with an external keyboard.