online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Online C# Compiler. Code, Compile, Run and Debug C# program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ using System; class HelloWorld { static void Main() { // أنشاء الكائن1 TV TV1 = new TV(); TV1.type ="LG"; TV1.size=44; TV1.year=2020; // أنشاء الكائائن1 TV TV2 = new TV(); TV2.type ="Samsung"; TV2.size=65; TV2.year=2008; // أنشاء الكا1 ئ TV TV3 = new TV(); TV3.type ="Toshiba"; TV3.size=55; TV3.year=2017; Console.WriteLine("Hello World"); // طباعة نوع التلفاز1 Console.WriteLine("TV1 type: " + TV1.type); Console.WriteLine("TV1 size: " + TV1.size); Console.WriteLine("TV1 year: " + TV1.year); Console.WriteLine("==============" ); // طباعة نوع التلفاز1 Console.WriteLine("TV2 type: " + TV2.type); Console.WriteLine("TV2 size: " + TV2.size); Console.WriteLine("TV2 year: " + TV2.year); Console.WriteLine("==============" ); // طباعة نوع التلفاز1 Console.WriteLine("TV3 type: " + TV3.type); Console.WriteLine("TV3 size: " + TV3.size); Console.WriteLine("TV3 year: " + TV3.year); } }
public class TV { //صفات الفئة //نوع public string type; // حجم public int size; // سنة الانتاج public int year; }

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