xxxxxxxxxx
#include<iostream>
using namespace std;
void square(int value)
{
int total = pow(value, 2);
cout << total << endl;
}
void cube(int value)
{
int total = pow(value, 3);
cout << total << endl;
}
int main()
{
int value;
cout << "Enter value: ";
cin >> value;
if (value % 2 == 0)
{
square(value);
}
else
{
cube(value);
}
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
void function(){
cout << "I am a function!" << endl;
}
int main()
{
function();
return 0;
}
xxxxxxxxxx
// the void function
void function() {
cout << "Hello World!";
}
// the main function
int main() {
function();
return 0;
}
xxxxxxxxxx
// C++ Program to demonstrate working of a function
#include <iostream>
using namespace std;
// Following function that takes two parameters 'x' and 'y'
// as input and returns max of two input numbers
int max(int x, int y)
{
if (x > y)
return x;
else
return y;
}
// main function that doesn't receive any parameter and
// returns integer
int main()
{
int a = 10, b = 20;
// Calling above function to find max of 'a' and 'b'
int m = max(a, b);
cout << "m is " << m;
return 0;
}
xxxxxxxxxx
return_type function_name( parameter list ) {
body of the function
}