M Mr. Dubey π Coach β 103.11K Points π Data Structure and Algorithms (DSA) Q. What will be output if you will compile and execute the following c code? #include <stdio.h> #include <string.h> int main(){ char *str=NULL; strcpy(str,"cquestionbank"); printf("%s",str); return 0; } (A) cquestionbank (B) cquestionbank\\0 (C) (null) (D) it will print nothing ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) (null)