Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Functions

Cpp program to illustrate function overloading by adding two numbers

Suryateja Pericherla Categories: Functions. No Comments on Cpp program to illustrate function overloading by adding two numbers

In this article we will learn to implement a Cpp program to illustrate function overloading by adding two numbers. A C++ program is provided below to demonstrate function overloading by adding different types of numbers.   Program is as follows: #include <iostream> using namespace std; int sum(int a, int b) { return a+b; } float […]

Read the rest of this entry »

CPP program to demonstrate the use of default arguments

Suryateja Pericherla Categories: Functions. No Comments on CPP program to demonstrate the use of default arguments

In this article we will look at implementing a CPP program to demonstrate the use of default arguments. A C++ program is provided below to illustrate the use of default arguments for simple interest function. Program is as follows: #include <iostream> using namespace std; float si(int p, int n, int r=5) { return (p*n*r)/100; } […]

Read the rest of this entry »

CPP program to illustrate function overloading

Suryateja Pericherla Categories: Functions. No Comments on CPP program to illustrate function overloading

In this article we will learn to implement a CPP program to illustrate function overloading. A C++ program is provided below to demonstrate function overloading using 2 overloading functions for power.   Program is as follows: #include <iostream> #include <cmath> using namespace std; int power(int x) { return pow(x, 2); } int power(int x, int […]

Read the rest of this entry »

CPP program to illustrate inline functions

Suryateja Pericherla Categories: Functions. No Comments on CPP program to illustrate inline functions

In this article we will learn to implement a CPP program to illustrate inline functions. A C++ program is provided below for demonstrating inline functions.   Program is as follows: #include <iostream> using namespace std; inline void swap(int &x, int &y) { int temp = x; x = y; y = temp; } int main() […]

Read the rest of this entry »

Call By Value and Call By Reference Program in C++

Suryateja Pericherla Categories: Functions. No Comments on Call By Value and Call By Reference Program in C++

In this article we will learn how to implement call by value and call by reference program in C++. A program in C++ is provided to implement call by value and call by reference using reference variable. Program is as follows: #include <iostream> using namespace std; void swapval(int x, int y) { int temp; temp […]

Read the rest of this entry »
Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory