Back To C++ User Defined Functions Index
//program to create a function that takes two integer arguments and finds largest of them #include
#include
void large(int,int); void large(int a,int b) { if(a>b) { cout<
>a; cout<<"Enter value for b"; cin>>b; large(a,b); getch(); }