online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
// Tweet program using System; using System.Collections.Generic; public class Program { // ------------------------- // Subprograms // ------------------------- static List<string> tweets (string message, int num_chars) { } // ------------------------- // Main program // ------------------------- static void Main() { Console.Write("Enter the message: "); string message = Console.ReadLine(); Console.Write("How many characters per message? :"); int max_chars = Convert.ToInt32(Console.ReadLine()); List<string> tweet_elements = tweets(message, max_chars); foreach (string tweet in tweet_elements) { Console.WriteLine(tweet); } } }

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