skip to main
|
skip to sidebar
Pages
Home
Questions
Contact Us
Privacy policy
Subscribe:
C ++ forums
Ads 468x60px
Popular Posts
C++ program to print first 10 multiples of a number
This is a simple C++ program which print first 10 multiples of a number n, where n is to be entered by the user. The program goes as follows...
C++ program to calculate the sales of a salesman
This is a C++ program which will accept the total sales of three products by three sales man in a double dimensional array. And hence it wil...
C++ program to check if the string is palindrome or not
This is a simple C++ program that accepts string from user and check it whether it is a palindrome or not. Below is the source code of the p...
C++ program that counts the number of words in a string or a line
This is a simple C++ program that counts the number of words in a line or a string. Each word is separated by a space and the string will be...
A C++ program that interchange or swap the values of two integers without using third variable
In this post I am going to write a C++ program that swaps two number without making use of any third variable. The two integers are A and B ...
C and C++ program Program to convert the lowercase letter into uppercase and to increment an integer
# include "iostream.h" # include "conio.h" char convert(char ch) { return(ch -32); } int increment(int n) { return(++n...
C and C++ program to calculate area of square and area of rectangle using function
#include "iostream.h" int area(int s) { return(s * s); } float area(int b , int h) { return(0.5 * b * h); } main() { cout <...
C++ program for matching braces in a parenthesised algebraic expression.
This is a simple C++ program which checks for matching braces in a parenthesised algebraic expression. If the match is successful, the funct...
C and C++ program to perform various operations on strings
#include"iostream.h" #include"conio.h" #include"stdio.h" void findlength() { char str[30]; int l=0; cout...
Introduction
Hello world, This is a C ++ programming forum. You can discuss every thing related to C++ programming and ask any thing related to C++ prog...
Followers
Contact Us
Loading...
Home
Subscribe to:
Posts (Atom)
Powered by
Blogger
.
Blog Archive
▼
2011
(22)
▼
December
(21)
C and C++ program to perform various operations on...
C and C++ program Program to convert the lowercase...
C and C++ program to find the minimum of two numbe...
C and C++ program to calculate the square root of ...
C and C++ program to calculate area of square and ...
C and C++ program to calculate the area of rectang...
C and C++ program to calculate area of rectangle a...
C and C++ program to find the sum of a GP (Geometr...
C and C++ program to find the sum of first N terms
C and C++ program to find number of vowels, conson...
C and C++ program to accept an integer and convert...
C and C++ program to generate first N prime numbers
C++ program for matching braces in a parenthesised...
C++ program that returns the position for a substring
C++ program to check if the string is palindrome o...
C++ program to calculate the sales of a salesman
C++ program that counts the number of words in a s...
C++ program to print first 10 multiples of a number
A C++ program that interchange or swap the values ...
C and C++ program to find the sum of exponential s...
C and C++ program to find the sum of series in exp...
►
November
(1)
Sample text