Input
Output
#include<stdio.h> int main(){ int r=10; float area; const float PI=3.14; area=PI*r*r; printf("The value of PI is: %f",area); return 0; }