Help me in solving CLB003 problem

My issue

not showing correct answer

My code

#include <stdio.h>

void main() {
    char a[10]="I love c.";

  printf("%s",a);
  //Replace the _ with the correct value

 // return 0;
}

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

@anishpaul
U have to replace _ like this

#include <stdio.h>

int main() {

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

  return 0;
}

You have to write the code just to print the statement “I love C.”
By the way your answer is also correct.