What is the output of the following program on GCC compiler? June 6, 2022 by admin โช 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 outputB. compiler errorC. The content of str is displayed on the screen.D. NULL Submit Answer