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() {
char str[] = "Logic World";
printf("%.3s %2s ", str, str);
return 0;
}

A. Error: in Array declaratio
B. Error: printf statement
C. Error: unspecified character in printf
D. No error