1.

What will be output if you will compile and execute the following c code?#include #include 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
Answer» D. it will print nothing


Discussion

No Comment Found