@manish-r2Hoep
•
Oct 22, 2024
Oct 22, 2024
1.1K
problem in c++ code
helo guys...I have a problem in following c++ code...I want to find largest and smallest element in an array..using recurssion..please help me
#include<iostream.h>
#include<conio.h>
int max1,min1;
void maxmin(int a[],int,int,int*,int*);
int...