What is the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What is the output of the following program on GCC compiler?

#include 
#include
int main(){
char str[20];
FILE *fp;
fp=fopen(strcpy(str,"Test.c"),"w");
fclose(fp);
return 0;
}

A. No error , No output
B. compiler error
C. The content of str is displayed on the screen.
D. NULL