User-submitted CPP Projects

347
2681 reads

February 22, 2013

Manipulation Of Vector Container


This example shows you how can you manipulate the vector<>.

25
1747 reads

February 22, 2013

Using if-else


The program is a simple if-else example. It asks the user for input of a number and checks if the entered number is even or odd. The if statement first checks if the number is even.

30
3663 reads

February 22, 2013

Comparing array & vector


This example demonstrates the array and vector.

28
1662 reads

February 22, 2013

Character conversion


This program asks user for input of an alphabet. Then, it checks if it is an uppercase letter. If yes, it displays appropriate message, converts it into lowercase and displays.

24
1928 reads

February 22, 2013

Comparing data values


This program performs very basic comparison operation on chars.

28
1654 reads

February 22, 2013

Scope of variables


This program shows the scope of variables. In main(), count1 and count3 are two integer variables. Inside main(), there is a block in which another set of int variables count1 and count2 are made.

38
1768 reads

February 22, 2013

Enumeration


An enumeration is a set of named integer constants that specify all the legal values

22
1774 reads

February 22, 2013

Bitwise operators


This example shows the working of some of the bitwise operators in C++. Bitwise operators are used to perform bit-level operations.

36
1048 reads
scientific_Calculator.cpp(1.0)
Scientific Calculator in C By Zeeshan Ali (Prince_Of_Light)


Run It Now!
37
1555 reads

February 22, 2013

Constant Reference overloading


Function overloading or method overloading is a feature found in various programming languages that allows creating several methods with the same name which differ from each other in the type function