Q130
What will be the output of the following C# code snippet? class UnsafeCode unsafe static void Main() string str = "this is a test"; fixed (char* p = str) for (int i = str.Length-1 ;p[i] != 0 ;i--) Console.Write(p[i]); Console.ReadLine();
A.
test a is this
B.
compile time error
C.
tset a si siht
AnswerD.
run time error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board