Help me in solving CLB026 problem

My issue

What is the output

My code

// Complete the code by updating the uderscores(__)
#include <stdio.h>

int main() {

  double pi = 3.14;
  double radius = 8.9;
  double area = pi * radius * radius;

  printf("The Area of the given Circle is 248.7194", area);
  
}

Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC05/problems/CLB026

show error
because you dont define the %d in printf which is important