For Deleting Object from a list, Remove method must be used. Remove Method deletes the value to be...
Author - Mike
Math Sqrt Decimal in C#
Math.Sqrt metod return double type by default due to performance. If you want to find square root...
Finding the Square Root of a Number in C#
In C# the square root of all numbers can calculated except nagative and decimal numbers. In this...
Printing “Hello world” in Python
The following procedure creates a Python version of the traditional “Hello World!”...
Printing 1 to 100 in C# Linq
We can count numbers with Enumerable class in C# Linq Example 1: In first example, we create an...
Dollar / Euro Currency Exchange Rate Convertor in C# using JSON
These examples are prepared for converting American dollars into Euro currency and vice verca. Two...
C++ Functions
Using functions we can structure our programs in a more modular way, accessing all the potential...
C++ switch case Statement
The syntax of the switch instruction is a bit peculiar. Its objective is to check several possible...
C++ exit function
exit is a function defined in cstdlib (stdlib.h) library. The purpose of exit is to terminate the...
C++ goto Statement
goto It allows making an absolute jump to another point in the program. You should use this feature...
