Examveda

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

D. run time error

Answer: Option C


This Question Belongs to C Sharp Programming >> Miscellaneous In C Sharp

Join The Discussion

Related Questions on Miscellaneous in C Sharp