Learning 2-Dimentional Arrays

Submitted by moazkhan on

Learning 2-Dimentional Arrays

In this part you will learn: 1. 2D Arrays 2. C syntax 3. Showing output In this tutorial I will teach you about 2D Arrays. We will cover what is a 2D array and how does a 2D array work. What is a 2D Array? In simple words a 2D array is simply and array of array. We have multiple rows and columns in a 2D array. We have learnt previously how we access elements of array by simply accessing the different indexes of array using subscripts.

PRISON MANAGEMENT SYSTEM ONLINE

Submitted by theadmiraleliud on
This system is about prison management system online where we have the following module 1.prisoners records 2. prisoners transfers 3.prisoners officers 4.prisoners officers transfer 5.location of prisons 6.admin module 7.law enforcement module 8.data entry credit to Eliud M aganze follow me on twitter: http://www.twitter.com/eliudprom website http://wwww.eliudpro.com/eliudpro blog: htttp:/

Display MAC Address using Local IP in C#

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program that displays a MAC Address using Local IP in C#. We all know that a MAC (Media Access Control) address is a number that identifies the network adapter(s) installed on your computer. The address is composed of up to 6 pairs of characters, separated by colons. You may need to provide your MAC address to a router in order to successfully connect to a network. There are so many ways to find the MAC Address of your PC.

Load and Display Contents of RTF File in a RichTextBox in C#

Submitted by donbermoy on
In this tutorial, I will teach you how to create a program that will load and display the contents of an RTF File in a RichTextBox using VB.NET. RTF means Rich Text Format and is a text file format used by Microsoft products. RTF files support text style formatting, as well as images within the text. Now, let's start this tutorial! 1.

Get the Number of Occurences of a Text in a ListBox using C#

Submitted by donbermoy on
In this C# tutorial, we will create a program that can determine the most repeated string or text inputted that is displayed in the ListBox. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2.

Get Computer Drive using C#

Submitted by donbermoy on
This is a simple tutorial entitled "Get Computer Drive using C#". Sometimes we have require to get the drives of our computer, but this tutorial gets the list of available drives in ListView control. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2.

How to hava a Complex Password in C#

Submitted by donbermoy on
Today in C#, we will create a program that can determine if the inputted password is complex or not. Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. Now, let's start this tutorial! 1.

Introduction to Arrays

Submitted by moazkhan on

Introduction to Arrays

In this part you will learn: 1. Arrays 2. Sorting using arrays 3. Constants 4. Showing output In this tutorial I will teach you how to use arrays. What is an Array ? An array is a set of variables which you can declare in a single statement. For example if you want to make a result calculating program you need to declare the total number of students first. So instead of declaring student1, student2 etc you can write int students[40]; in this way we declared 40 variables in a single statement.