Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts

Monday, 14 December 2020

C# Program to Print Hello World

using System;


public class Test

{

public static void Main()

{

Console.WriteLine("Hello World");

}

}


Java Program to count the total number of characters in a string

 //Java Program to count the total number of characters in a string import java.util.*; public class CountChars {     public static void mai...