Help me in solving CLB003 problem

My issue

output is correct why it not showing correct

My code

#include <stdio.h>

void main() {
    
  printf("I love c.");
  //Replace the _ with the correct value

 // return 0;
}

Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone

@anishpaul

The C is in capital and there is no ( . ) in the output.

#include <stdio.h>

int main() {

  printf("I love C");     //Replace the _ with the correct value

  return 0;
}