online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
using System; using System.Linq; class SplitToUpper { static void Main() { var input = "Это тестовое предложение, Некоторые из Слов начинаются с Заглавной буквы"; var words = input.Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries); var output = words.Where(w => char.IsUpper(w[0])).Reverse().ToArray(); foreach(var word in output) Console.WriteLine(word); } // Main } // class SplitToUpper

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue