Help me in solving CLB011 problem

My issue

include <stdio.h>
printf(“World”);
printf(“Hello\n”);
int main() {
}

Learning course: Learn C Programming
Problem Link: Rearrange Code in C Programming

  • The printf function is used to print formatted output to the console.
  • The \n in printf("Hello\n"); is a newline character which moves the cursor to the next line after printing “Hello”.
    include <stdio.h>

int main() {
printf(“World”);
printf(“Hello\n”);
return 0;
}