M. Saqib

Statements in C#

The real nuts and bolts of a programming languages is that which controls the flow of a program called statements. Types of Statements in C#…

Predefined Datatypes in C#

Predefined Datatypes in C#

Here we will see the data types available in C#. Before examining the data types in C#, first we will try to understand the C#…

Polymorphism: Object Oriented Programming (OOP)

In OOP terms, polymorphism represents the ability to resolve a reference to an object's method at run time. Specifically, different objects could make a call…

Application Structure

Let's begin by looking at the structure of a C# application. Every C# application contains certain elements. The application begins with the hierarchical levels, listed…

STL: The C++ Standard Template Library

The STL (Standard Template Library) was originally a third-party library from HP and later SGI, before its incorporation into the C++ standard. The standard does…

An Overview of C#

C# is a new programming language specifically designed for Microsoft .NET Framework. C# is significant in two respects. It is specifically designed for use with…

All About Microsoft .NET

The Microsoft .NET, more commonly known as simply the .NET Framework, is a software development platform created by Microsoft. The .NET Framework is now in…

Stack Implementation in C

This is a C program that simulates stack operations graphically and in text mode. The program uses linked list to implement stack operations. Stack is…