Basic Things in Programming Contest

In the past there were more simpler problems in programming contest than present. Day by day the problems are becoming hard. So if you are...

Constants in VB .NET

Sometime we want to use fixed value for specified variable. For this purpose we can use constants in VB .NET as follows: Const MAX_STUDENTS As...

Data Types in VB .NET

In this section I’ll discuss here about value types, initialization, type information and type conversion: Value Types ------------------------------------- Boolean Byte, SByte Char Short, UShort, Integer,...

Comments in VB .NET

In every programming language there is a facility to keep comments. The structure of comments in Visual Basic .NET is same as C/C++ or java....

Program Structure of Visual Basic .NET

Here is the basic structure of Visual Basic .NET program structure: Imports System Namespace Hello Class HelloWorld Overloads Shared Sub Main(ByVal args() As String) Dim...

Loop in C

There are different kinds of loops are used in C: Pre-test Loops: ——————————————- //while Loop while (c < 10) c++; //for Loop for (c =...