add

Thursday, 16 February 2017

event driven programming with examples

Event Driven Programming In computer programming, event-driven programming is a programming paradigm in which the flow of the program is determined by events such as user actions (mouse clicks, key presses), sensor outputs, or messages from other programs/threads. Event-driven programming is the dominant paradigm used in graphical user interfaces and other applications...

Thursday, 9 February 2017

c++ circular link list source code

 C++ Circular link List source code Dear readers  this code is simplest form of  circular link list, copy paste the code in your  IDE then you try to understand if you get any trouble to understanding the code comment me I give you answer for make you understand. #include<iostream> #include <stdlib.h> using namespace std; void welcome(); void welcome() {  system("color 1A");  cout<<"\n\n\n";  cout<<"\t\t\t\t\t*******************************************  ...

Monday, 6 February 2017

C++ nested if-else statements with examples

Two-Way Selection There are many programming situations in which you must choose between two alternatives. For example, if a part-time employee works overtime, the paycheck is calculated using the overtime payment formula; otherwise, the paycheck is calculated using the regular formula. This is an example of two-way selection. To choose between two alternatives—that is,...