XML Basics

XML is not a programming language because it does not create applications, and uses a text editor.XML is not a database that store the data. XML is a structured document format which carry data and metadata. A metadata contains information about the data.XML uses markup tags to self-describe the data and metadata. There is an … Read more

C Program To Implement Linear Search and Binary Search Algorithm

Previous Next In this article, you will learn to write a C program that implement two search algorithms – Linear Search and Binary Search Algorithm using C switch statement.The purpose is not to explain the algorithm, but to show you the implementation and working of these two search algorithms.This program is written on Turbo C++ … Read more

C Program to Implement Bubble Sort Algorithm

Previous Next This program is an implementation of Bubble sort algorithm. The program receives unsorted input numbers and sorts the number in ascending or descending number as an output.Visit following link to learn about other sorting and searching algorithms. Linear Search and Binary Search Insertion Sort Maximum and Minimum Number in an Array This program … Read more

C Program To Manipulate Matrices

The C program for matrix manipulation performs basic matrix operations upon receiving the values for two matrices from the user. The program does addition, subtraction, multiplication, and transpose of a matrix.We wrote the program using Dev-C++ version 4 compiler installed on Windows 7 64-bit. You can work with other standard C compilers after modifying the … Read more

C Program To Reverse A Given String

The program to reverse a given string takes the input string and output reverse of the string. Each of the characters from the input string is extracted one at a time to achieve this task.The program is compiled using Dev-C++ compiler version 4.9.9.2 installed on a Windows 7 64-bit system. However, you can use any … Read more

C++ Constructors And Destructors

C++ constructors are special member functions that initialize objects when it is created. In other words, as soon as the object starts living the constructor assigns initial values to the objects. There is another special function called destructor, which does opposite of what constructor does – destroy objects.Syntax for Declaring a Constructor A constructor should … Read more

C Assignment Operators

The assignment operators assign values to variables. Once values are assigned the variables are evaluated in expressions and return a single value.There are three types of assignments as shown below.1. Variable = Value( e.g., a = 4)2. Variable = Expression( e.g., a = 3 + b)3. Variable = Variable <Operator> Value (e.g., a = a … Read more

How to Write a Visual Basic Program

In the previous lesson, you were introduced to the visual basic 6 ide (integrated development environment). It is also called the design interface. This lesson you will learn how to write a visual basic program.To learn about VB IDE, visit the link below.Visual Basic basicsIn this lesson, you will learn how to write your first … Read more

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Exit mobile version