Variable & Constant in C#
Table of ContentsVariableRules of declaring a variableConstant Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के…
Table of ContentsVariableRules of declaring a variableConstant Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के…
Question no. 1 – Write a program to print “Hello World” in C# using System; public class Program { public static void Main(string args) { Console.WriteLine("Hello World"); } } //…