C Sharp (C#) - File IO
What will be the output of this C# code?
string folder = "C:\\Users\\Public"; string fileName = "report.txt"; string fullPath = Path.Combine(folder, fileName); Console.WriteLine(fullPath);
