Point out the error in the following program on GCC compiler.

Loading

โœช Choose the correct option.

Point out the error in the following program on GCC compiler.

#include  
int main() {
fprintf("Logic World");
printf("%.ef", 2.0);
return 0;
}

A. Error: unknown value in printf() statement.
B. Error: in fprintf() statement.
C. No error and prints “Logic World”
D. No error and prints “2.0”