(Choose 1 answer)
What will happen with the following code?
char str[] = "You are right.";str = "No, you are wrong.";printf("%s",str);
A. print out to the screen the line "No, you are wrong."
B. print out to the screen the line "You are right."
C. Error at compilling time. Strings are special arrays, that you cannot assign values to them
D. Error at run time.
Exit (18