My issue
// Complete the code by updating the uderscores(__)
include <stdio.h>
int main() {
double pi = 3.14;
double radius = 4.3 ;
int area = pi * radius * radius;
printf(“The Area of the given Circle is %f”, area);
My code
// Complete the code by updating the uderscores(__)
#include <stdio.h>
int main() {
double pi = 3.14;
double radius = 4.3 ;
int area = pi * radius * radius;
printf("The Area of the given Circle is %f", area);
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC05/problems/CLB026