S
Q. What will be the output of the following C# string? (Enter a String : BOMBAY).
static void Main(string[] args) { string Str, Revstr = " "; int Length; Console.Write("Enter A String : "); Str = Console.ReadLine(); Length = Str.Length - 1; while (Length >= 0) { Revstr = Revstr + Str[Length]; Length --; } Console.WriteLine("Reverse String Is {0}", Revstr); Console.ReadLine(); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of following statement are correct about functions?
Q. The first type of streams is specially used to represent _________
Q. Which of these can be overloaded?
Q. ______ parameters are used to pass results back to the calling method.
Discusssion
Login to discuss.