How to compare two dates in c#. The program will read the year, month and day as input from the user and compare both dates.
ReadLearn how to replace all commas with newline in a string in C#. The program will read one string from the user.
ReadC# program to change the case of the user input character. The program will ask the user to enter a character and it will print the character in upper case. For a lowercase character, it will print it in upper case.
ReadC# program to replace a substring in another string. This program will use Replace method to replace a substring. Learn how to use Replace method and its exceptions.
ReadC# program to convert fahrenheit to celsius. The program will take the fahrenheit value as input from the user, convert it to celsius value and print the result to the user.
ReadC# program to convert celsius to fahrenheit value. The program will take the celsius value as the input from the user and print out the fahrenheit value to the user.
ReadC# program to find the factorial a number in different ways. We will learn by using a for loop, using a while loop, using a different function and recursively.
ReadC# program to check if a number is strong number or not using user input. A number is called a strong number if the sum of all factorials of digits is equal to the number.
ReadC# program to find random numbers in a given range. Find a random number and print its value.
ReadC# program to find the largest and smallest numbers in an user given array
Read