Do While Loops

Submitted by Muzammil Muneer on

Do While loops

In this part you will learn: 1. C syntax 2. Do While loops In this tutorial I will teach you about Do While loops. We will see a very basic program at first to grasp the concept of while loop and then afterwards we will make another program of reversing a number. Do While Loop Basic Step: Open Dev C++ then File > new > source file and start writing the code below.

While Loops

Submitted by Muzammil Muneer on

While loops

In this part you will learn: 1. C syntax 2. While loops 3. More about Conditional Statements In this tutorial I will teach you about While loops. We will see two programs that use while loops. The first one will calculate the table of the number that user enters and the second one will calculate the average of a sum of numbers. Calculating Table Basic Step: Open Dev C++ then File > new > source file and start writing the code below.

Repeating Tile Background Animation in CSS

Submitted by GeePee on
This project will teach you on how to animate a repeating tile background using CSS keyframes. Using the css keyframes, tiled images will animate like a falling snow as seen on my example. It is depend on your style if you want to animate it from the right. Feel free to modify this project according to your preference. Hope you learn from this.

Insert, Delete, Update in GridView using ASP.NET

Submitted by sadiq.ameen.982 on
1. As we don't want to use datasource controls. Please delete "ObjectDataSource1" control from the webform. 2. Delete DataSourceID="ObjectDataSource1" from GridView1. This should remove the dependency of GridVIew1 on ObjectDataSource1 control. 3. From the code behind file, delete lbInsert_Click() event handler method. 4. In the "FooterTemplate" of "EmployeeId" TemplateField, please delete OnClick=

Learning Nested Loops

Submitted by Muzammil Muneer on

Learning Nested loops

In this part you will learn: 1. C syntax 2. Nested Loops 3. More on For loops In this tutorial I will teach you about Nested For loops. We see some more examples of for loop in this tutorial. Printing Triangle with stars Basic Step: Open Dev C++ then File > new > source file and start writing the code below.

Switch Statement and Loops

Submitted by Muzammil Muneer on

Switch Statements and Loops

In this part you will learn: 1. C syntax 2. Switch Statement 3. For Loop In this tutorial I will teach you about Switch statements and some basics of For loop. The first program is related to switch statement. The second and third program is about for loop. Switch Statement Basic Step: Open Dev C++ then File > new > source file and start writing the code below.

Toast Notifications in Android Application

Submitted by pavel7_7_7 on
In this tutorial you will find the information about how to use toast notifications in your Android Project. Toast notification is a message that appears in your application window. The size of this notification is exact as needed to show all the information of the message. After it is show, Toast Notification disappears. In the most cases is used to show a short text message. To show the Toast Notification you need to initialize the object of the Toast.

Conditional Statements

Submitted by Muzammil Muneer on

Conditional Statements

In this part you will learn: 1. C syntax 2. Conditional Statements 3. Operators In this tutorial I will teach you about conditional statements in C. The first program will be a basic one with a most basic conditional statement. The second one is a grade calculator. First Program. Basic Conditional Statements Basic Step: Open Dev C++ then File > new > source file and start writing the code below.