skip to main
|
skip to sidebar
Pages
Home
Questions
Contact Us
Privacy policy
Subscribe:
C ++ forums
Ads 468x60px
Popular Posts
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...
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 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 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 and C++ program to find the sum of a GP (Geometric progression)
#include "iostream.h" #include "conio.h" // Function to calculate the exponential values int expo(int power, int base) {...
C and C++ program to accept an integer and convert it into an equivalent binary
In this post I am going to publish a C++ program which will accept an integer from the user and print it's binay on the output screen. T...
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 to perform various operations on strings
#include"iostream.h" #include"conio.h" #include"stdio.h" void findlength() { char str[30]; int l=0; cout...
C and C++ program to calculate the square root of different numbers
# include"iostream.h" # include"math.h" int sroot(int n) { return(sqrt(n)); } long int sroot(long int n) { return(sq...
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 <...
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