Write a program that provides an example of call by value for functions.
#include<iostream.h> #include<conio.h> main() { clrscr(); int i=10; void f(int); f(i); } void f(int i) { cout<<"The number is :"<<i<<endl; }