Iteration Statement in C# Language
Objective
In this tutorial, we will show you how to use some type of loops in C# language to control the flow of program.
Let's go
In many cases you want to repeat a piece of code multiple times. When you want to repeat code, C# language provides you a number of iteration statements. Iteration statements can execute a block of code zero or more times. Each execution of code is a single iteration.
While statement
How to Create Login Page in PHP/MySQL using PDO Query
Creating Our Database
First we are going to create our database which stores our data. To create a database: 1.Generate Random Number without using rand() function in PHP
Selection Statement in C# Language
Objective
In programming language, selection statement is very important. With selection statement, you can control the flow of program, and produce a valid output. This section will guide you how to use some selection statements in basic.
Let's go
Selection statement enable you to execute specific blocks of code based on the results of a condition. Here we have two basic selection statement: If statement and switch statement.
If statement
Photo Gallery (Edited, with Login and Upload)
Bantas Programming Language
How to Create Registration Page in PHP/MySQL Using PDO Query
Creating Our Database
First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2.Converting Data Types in C# Language
Objective
This tutorial will explain you to understand how and why a conversion of data type occur in C#. Understanding the conversion will help you to avoid error and lose data when operation happen.
Let's go
When you copy a value from one variable to another variable, a conversion must occur. Also when you want to do a operation on two difference data types, a conversion might also need occur. There are two types of conversion: implicit and explicit conversion.
Implicit Conversion