Vidyalelo
C# Programming · Q130

Miscellaneous in C Sharp

Programming · C# Programming · question 130

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
Answer
D.
run time error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board