Introduction of Queue Data Structure

Queue is an ordered list in which all insertions at one end called REAR and deletions are made at another end called FRONT. Queues are sometimes referred to as First In First Out (FIFO) list. Examples of Queue: People waiting in line at the bank queue counter from a queue. In computer, the jobs waiting in line to… Read More »

C Variables and its properties

Prerequisite – Introduction to C programming language, Variables in C Variable is named location of data. In other words, variable is container of data. In real world we have used various type containers for specific purpose. For example, we have used suitcase to store clothes, match box to store match sticks etc. In the same way, variable of… Read More »

Known Versions of C programming language

Basically, C was originally developed at Bell Labs by Dennis Ritchie between 1972 and 1973 to make utilities running on Unix. It is being updated, there are various known versions of C programming language. These are various published Versions of C++. Versions : Version Standard Release Date Description Birth Birth 1972 First version release year in 1972 K&R… Read More »

Applications of C++ Programming Language

C++ language is a high-level, general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or “C with Classes”. It is one of the most popular and widely used programming languages. It has its presence in almost every area of software development. Applications of C++ Programming Language : These are various uses of… Read More »

Characteristics or features of an Algorithm

Algorithm is a step-by-step procedure which is used to solve a problem. It is important Computer Science and Software Engineering. We can improve our program efficiency in cost and time by choosing appropriate algorithm and data structures for a particular program. An algorithm is a sequence of computational steps that transform the input into the output. Definition of… Read More »

Compiling and Building program in C++

C++ uses Compiler to compiler and check errors before run the program, else erroneous C++ program can not be run. If there is any error in the program, then you have to remove those errors by correcting program. Then you can run the program. To compiler program, there are various compilers available depending on your operating system. Note… Read More »

Versions of C++

These are various published Versions of C++. Versions : Version Standard Release Date Key Features C++98 ISO/IEC 14882:1998 1998-09-01 The first standardized version of C++. C++03 ISO/IEC 14882:2003 2003-10-16 A minor update to C++98 that includes a new features. C++11 ISO/IEC 14882:2011 2011-09-01 A major update to C++ that includes a number of new features i.e., lambda expression,move… Read More »